post_type_supports

函数
post_type_supports ( $post_type, $feature )
参数
  • (string) $post_type The post type being checked.
    Required:
  • (string) $feature The feature being checked.
    Required:
返回值
  • (bool) Whether the post type supports the given feature.
定义位置
相关方法
add_post_type_supportget_all_post_type_supportsremove_post_type_supportget_post_types_by_supportwp_http_supports
引入
3.0.0
弃用
-

post_type_supports。post_type_supports函数是一个WordPress的函数,它检查一个特定的功能或支持是否为一个给定的文章类型所启用。它用于确定一个文章类型是否支持某些功能,如标题、编辑器、缩略图等。

检查一个文章类型对给定功能的支持。

function post_type_supports( $post_type, $feature ) {
	global $_wp_post_type_features;

	return ( isset( $_wp_post_type_features[ $post_type ][ $feature ] ) );
}

常见问题

FAQs
查看更多 >