get_post_type()

get_post_type( int|WP_Post|null $post = null ) 检索当前文章或给…

get_post_type( int|WP_Post|null $post = null )

检索当前文章或给定文章的文章类型。
Retrieves the post type of the current post or of a given post.

目录锚点:#参数#返回#源码#笔记


参数(Parameters)

参数 类型 必填 说明
$post (int | WP_Post | null) 可选 Post ID或Post对象。默认值为全局$post。

返回(Return)

(string|false)成功时为Post类型,失败时为false。


源码(Source)

/**
 * Retrieve the post type of the current post or of a given post.
 *
 * @since 2.1.0
 *
 * @param int|WP_Post|null $post Optional. Post ID or post object. Default is global $post.
 * @return string|false          Post type on success, false on failure.
 */
function get_post_type( $post = null ) {
	if ( $post = get_post( $post ) )
		return $post->post_type;

	return false;
}
更新版本 源码位置 使用 被使用
2.1.0 wp-includes/post.php:1215 24 1 function

笔记(Notes)

默认WordPress文章类型名称
显示文章类型。这个例子必须在循环中。
条件句,看它是不是post类型。

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册