管理栏中的WordPress自定义链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了管理栏中的WordPress自定义链接相关的知识,希望对你有一定的参考价值。
// add custom links to admin bar // via bit.ly/wprec-adminlx function mytheme_admin_bar_render() { global $wp_admin_bar; 'parent' => 'new-content', // use 'false' for a root menu, or pass the ID of the parent menu 'id' => 'new_media', // link ID, defaults to a sanitized title value 'title' => __('Media'), // link title 'meta' => false // array of any of the following options: array( 'html' => '', 'class' => '', 'onclick' => '', target => '', title => '' ); )); } add_action( 'wp_before_admin_bar_render', 'mytheme_admin_bar_render' );
以上是关于管理栏中的WordPress自定义链接的主要内容,如果未能解决你的问题,请参考以下文章