如何将新的分类链接添加到管理菜单

时间:2012-04-18 作者:ltfishie

我想从我的插件调用“Tickers”中在“Post”下添加一个新的管理菜单项,其链接类似于“Tags”,但指向

/wp-admin/edit-tags.php?taxonomy=tickers
到目前为止我得到的是

add_action(\'admin_menu\', array($this,\'admin_menu\'));
function admin_menu () {
     add_options_page();    
}
我不确定要传递给add\\u options\\u页面的正确参数是什么。任何帮助都将不胜感激。

Edit

下面提供的答案引导我http://themergency.com/generators/wordpress-custom-taxonomy/, 它可以为您生成自定义分类功能。

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

一旦您注册了自定义分类法,分类法管理页面将由WordPress处理。

add_action( \'init\', \'create_ticker_taxonomies\', 0 );

//create two taxonomies, genres and writers for the post type "book"
function create_ticker_taxonomies() {

  // Add new taxonomy, make it non-hierarchical (like \'tags\')
  $labels = array(
    \'name\' => _x( \'Tickers\', \'taxonomy general name\' ),
    ...
  );    

  register_taxonomy(\'ticker\',array(\'post\'), array(
    \'hierarchical\' => false,
    \'labels\' => $labels,
    \'show_ui\' => true,
    \'query_var\' => true,
  ));
}
有关分类法及其标签的完整选项,请参见Codex Page.

结束

相关推荐