管理栏中的WordPress自定义链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了管理栏中的WordPress自定义链接相关的知识,希望对你有一定的参考价值。

  1. // add custom links to admin bar
  2. // via bit.ly/wprec-adminlx
  3.  
  4. function mytheme_admin_bar_render() {
  5. global $wp_admin_bar;
  6. $wp_admin_bar->add_menu( array(
  7. 'parent' => 'new-content', // use 'false' for a root menu, or pass the ID of the parent menu
  8. 'id' => 'new_media', // link ID, defaults to a sanitized title value
  9. 'title' => __('Media'), // link title
  10. 'href' => admin_url( 'media-new.php'), // name of file
  11. 'meta' => false // array of any of the following options: array( 'html' => '', 'class' => '', 'onclick' => '', target => '', title => '' );
  12. ));
  13. }
  14. add_action( 'wp_before_admin_bar_render', 'mytheme_admin_bar_render' );

以上是关于管理栏中的WordPress自定义链接的主要内容,如果未能解决你的问题,请参考以下文章

WordPress功能“register_post_type”未显示在管理员左侧边栏中

将用户转发到 Wordpress 中的自定义仪表板

资源变现小程序源码及搭建教程

Wordpress自定义Post类型注册

实战Wordpres的CSRF漏洞利用

为 WP 中的特定页面自定义设置“当前菜单项”类