default_content

过滤钩子
apply_filters( 'default_content', $post_content, $post )
参数
  • (string) $post_content Default post content.
    Required:
  • (WP_Post) $post Post object.
    Required:
定义位置
相关勾子
default_titledelete_commentthe_contentdefault_excerptdefault_feed
相关方法
the_contentget_the_contentdefault_topic_count_textdefault_topic_count_scalewp_delete_commentfilter_block_content
引入
1.5.0
弃用
-

default_content: 这是一个WordPress的过滤钩子,允许开发者定制一个文章或页面的默认内容。该钩子传递一个参数:$content(默认的文章或页面内容)。

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

$post->post_content = (string) apply_filters( 'default_content', $post_content, $post );

常见问题

FAQs
查看更多 >