‘Posts’的帖子类型说明

时间:2011-05-11 作者:Probocop

在我目前正在开发的网站上,我使用“自定义帖子类型UI”来管理我的自定义帖子类型。

在此范围内,我可以管理我创建的任何新自定义帖子类型的描述。

如何编辑默认“posts”帖子类型的描述?

我将在每个部分的标题下输出此描述。

谢谢

1 个回复
最合适的回答,由SO网友:Bainternet 整理而成

您可以使用global $wp_post_types 要编辑描述,例如:

add_action(\'init\' , \'edit_post_description\');
function edit_post_description(){
    global $wp_post_types;
    $wp_post_types[\'post\'] ->description = \'type your description here...\';
}

结束

相关推荐