php 隐藏菜单链接 - WordPress管理员

Posted

tags:

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

//* Hide links in Left Menu (for non-admins)
/* This style includes 
	 - Categories link, 
	 - Tags link, 
	 - TablePress extra links
*/
add_action('admin_head', 'jennywren_hide_menu');
function jennywren_hide_menu() {
	// Only run if the user is not an admin.
	if ( ! current_user_can( 'administrator' ) ) {
		echo '<style>			
			#menu-posts ul li:nth-child(4),
			#menu-posts ul li:nth-child(5),
			#menu-posts ul li:nth-child(6),
			#toplevel_page_tablepress ul li:nth-child(4),
			#toplevel_page_tablepress ul li:nth-child(5),
			#toplevel_page_tablepress ul li:nth-child(6),
			#toplevel_page_tablepress ul li:nth-child(7) {
				display: none;
			}	
		</style>';
	}
}

以上是关于php 隐藏菜单链接 - WordPress管理员的主要内容,如果未能解决你的问题,请参考以下文章

php 从WordPress管理区域的侧边菜单中隐藏本机类别和标签

php 从WordPress管理区域的侧边菜单中隐藏本机类别和标签

WordPress从管理菜单中删除链接

php 隐藏WordPress中编辑器角色的菜单项

隐藏/删除WordPress管理菜单

隐藏后,从URL显示WordPress菜单页面