我在函数中创建了自定义摘录长度。php,我想扩展这个函数来增加循环中第一篇文章的摘录长度。
My function at the moment:
/* Change Excerpt length */
function custom_excerpt_length( $length ) {
return 30;
}
Was thinking of something along these lines
function new_excerpt_length($length) {
global $post;
if ($post-> FIRST POST?)
return 50;
else
return 20;
}
有没有办法从
$post->?