wp_get_single_post

函数
wp_get_single_post ( $postid = 0, $mode = OBJECT )
参数
  • (int) $postid Post ID.
    Required:
  • (string) $mode How to return result, either OBJECT, ARRAY_N, or ARRAY_A.
    Required:
    Default: OBJECT
返回值
  • (WP_Post|null) Post object or array holding post contents and information
相关
  • get_post()
定义位置
相关方法
get_next_postwp_get_recent_postswp_insert_postwp_remote_postwp_delete_post
引入
1.0.0
弃用
3.5.0

wp_get_single_post: 这个函数为一个给定的文章ID检索一个单一的文章对象。如果找到该文章,它将返回一个WP_Post对象,如果该文章不存在,则返回空。

根据文章ID,检索单个文章。

在’post_category’属性或键中有类别。在’tags_input’属性中拥有标签或密钥。

function wp_get_single_post( $postid = 0, $mode = OBJECT ) {
	_deprecated_function( __FUNCTION__, '3.5.0', 'get_post()' );
	return get_post( $postid, $mode );
}

常见问题

FAQs
查看更多 >