篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php ARI INT相关的知识,希望对你有一定的参考价值。
<?php
/**
* Checks if the the post has excerpt or not
* Code reference: https://wordpress.stackexchange.com/a/52897/12615
*/
//
function wpse_40574_populate_excerpt( $data, $postarr )
{
if( ! isset( $data['news'] ) ) {
return;
}
global $wpse_40574_custom_excerpt_length;
// check if it's a valid call
if ( !in_array( $data['post_status'], array( 'draft', 'pending', 'auto-draft' ) ) && 'post' == $data['news'] )
{
// if the except is empty, call the excerpt creation function
if ( strlen($data['post_excerpt']) == 0 )
$data['post_excerpt'] = wpse_40574_create_excerpt( $data['post_content'], $wpse_40574_custom_excerpt_length );
}
return $data;
}