post_type_supports()

post_type_supports( string $post_type, string $feature …

post_type_supports( string $post_type, string $feature )

检查post类型对给定功能的支持。
Check a post type’s support for a given feature.

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


参数(Parameters)

参数 类型 必填 说明
$post_type (string) 必需 正在检查的邮件类型。
$feature (string) 必需 正在检查的功能。

返回(Return)

(bool)post类型是否支持给定的功能。


源码(Source)

/**
 * Check a post type's support for a given feature.
 *
 * @since 3.0.0
 *
 * @global array $_wp_post_type_features
 *
 * @param string $post_type The post type being checked.
 * @param string $feature   The feature being checked.
 * @return bool Whether the post type supports the given feature.
 */
function post_type_supports( $post_type, $feature ) {
	global $_wp_post_type_features;

	return ( isset( $_wp_post_type_features[$post_type][$feature] ) );
}
更新版本 源码位置 使用 被使用
3.0.0 wp-includes/post.php:1913 33 0

笔记(Notes)

以转储所有可能的变量字符串。
要检查帖子是否支持评论,请执行以下操作:
可接受的弹头:

类别:WordPress 函数手册

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

评论 (0)COMMENT

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