将描述添加到管理中的类别菜单

时间:2014-03-04 作者:tmyie

我试图在post editor页面的categories菜单上方创建一个简单的段落。我看到的大多数教程都是添加输入元值,而不是与类别相关。

在post editor页面(类别菜单上方)中添加一段内容的最佳方式是什么?

1 个回复
SO网友:Eric Holmes

我假设这是针对帖子的内置类别分类法?这就是这样做的方式。

add_action( \'registered_taxonomy\', \'my_custom_category_paragraph\', 10, 3 );
function my_custom_category_paragraph( $taxonomy, $object_type, $args ) {
    global $wp_taxonomies;
    if ( \'category\' !== $taxonomy )
        return;

    // Change the callback that renders the metabox with our own.
    $wp_taxonomies[$taxonomy]->meta_box_cb = \'my_category_metabox_paragraph\';
}

function my_category_metabox_paragraph( $post, $box ) {
    // add our paragraph here
    echo \'<p>Hi there, sailor!</p>\';
    // Call the default meta box function
    post_categories_meta_box( $post, $box );
}

结束

相关推荐

Completely disable categories

有人知道有一个插件在WP中禁用了类别吗?我的意思是,对于现有用户和新用户,完全自动地从视图中隐藏该功能。特别是:WP admin菜单、帖子列表、它的屏幕选项和过滤器、帖子编辑器和它的屏幕选项、widgets屏幕、writing和permalink设置屏幕我遇到了各种老化的黑客来完成这一部分工作,其中大部分是用来禁用元框的代码和一些用来禁用permalink前缀的插件。我之所以选择这样做,是希望一些网页设计师或开发人员能够掌握整套功能。如果没有,在过去的3-4年中,是否会有新的API使过程变得更简单(我的W