default_excerpt

过滤钩子
apply_filters( 'default_excerpt', $post_excerpt, $post )
参数
  • (string) $post_excerpt Default post excerpt.
    Required:
  • (WP_Post) $post Post object.
    Required:
定义位置
相关勾子
default_feedwp_default_scriptsthe_excerptcomment_excerptdefault_content
相关方法
wp_default_scriptsthe_excerpthas_excerptcomment_excerptget_the_excerptget_default_feed
引入
1.5.0
弃用
-

default_excerpt: 这是一个WordPress的过滤钩子,允许开发者定制默认的摘录长度和内容。该钩子传递一个参数:$excerpt(默认摘录内容)。

过滤最初在”写文章”表格中使用的默认文章摘录。

$post->post_excerpt = (string) apply_filters( 'default_excerpt', $post_excerpt, $post );

常见问题

FAQs
查看更多 >