描述
示例: add_post_type_support(post_type, feature)
功能: 添加文章类型支持的功能
参数
post_type
(String) (Required)
文章类型关键字
feature
(String/Array) (Required)
对应功能的名称
示例1: 给默认的页面增加特色图片支持
add_post_type_support('page','thumbnail');
示例2: 给文章增加密码支持
add_post_type_support('article','password');
返回
(Void)
无