Grab value of excerpt_length

时间:2011-11-29 作者:Zach

我知道如何“设置”帖子的摘录长度,但如果我真的需要为其他内容获取这个整数值,你知道我如何获取/回显这个值吗?谢谢

1 个回复
SO网友:Joshua Abenazer

您可以这样存储长度。

function store_excerpt_length($length) {
    update_option( \'excerpt_length\', $length );
    return $length;
}
add_filter( \'excerpt_length\', \'store_excerpt_length\', 1000 );
然后使用以下代码获取长度。

echo get_option( \'excerpt_length\' );

结束

相关推荐

如何获取附件标题(Get_the_Excerpt给家长帖子摘录)?

我使用以下代码在父帖子页面上显示附件: $args = array(\'post_type\' => \'attachment\', \'post_mime_type\' => \'image\', \'order\'=> \'ASC\', \'numberposts\' => -1, \'post_status\' => null, \'post_parent\' => $post->ID ); $attachments