has_excerpt

函数
has_excerpt ( $post = 0 )
参数
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default is global $post.
    Required:
返回值
  • (bool) True if the post has a custom excerpt, false otherwise.
定义位置
相关方法
the_excerptget_the_excerptwp_html_excerptthe_excerpt_rssthe_excerpt_embed
引入
2.3.0
弃用
-

has_excerpt – 这是一个WordPress函数,用于检查当前文章是否有定义的摘录。摘录是一个文章或页面内容的简短摘要或描述,显示在档案页或搜索结果中。has_excerpt函数接受一个参数,即文章的ID或对象,如果该文章有定义的摘录,则返回true。

确定该文章是否有一个自定义的摘录。

关于这个和类似的主题功能的更多信息,请查看《主题开发者手册》中的{@link Conditional Tags}文章。

function has_excerpt( $post = 0 ) {
	$post = get_post( $post );
	return ( ! empty( $post->post_excerpt ) );
}

常见问题

FAQs
查看更多 >