php 隐藏元 - WordPress管理员

Posted

tags:

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

//* Hide meta on Edit screens (for Contributors)
/* Including 
	 - Divi Builder option,
	 - Category Add New link
*/
add_action( 'admin_head', 'jennywren_hide_meta' );
function jennywren_hide_meta() {
	// Only run if the user is not admin or editor.
	if ( ! current_user_can( 'administrator' ) && ! current_user_can('editor') ) {
  	echo '<style>
  			.post-type-post .et_pb_toggle_builder_wrapper,
  			#category-adder
  			{
  				display: none;
  			}
  		</style>';
  	}
}

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

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

php 隐藏管理栏wordpress

php 隐藏管理wordpress手册

PHP wordpress隐藏管理面板

PHP Wordpress隐藏管理菜单+子菜单

PHP Wordpress:隐藏管理元素框