Garamond adlı üyeden alıntı: mesajı görüntüle
Merhaba,

wp adminde görünüm sekmesi altında sadece "menüler" i bırakmak istiyorum. Diğerlerini silmek istiyorum nasıl yapabilirim?

tşkler.
Temanızın functions.php dosyasına aşağıdaki kodları eklerseniz istediğiniz olur.

add_action( 'admin_menu', 'my_remove_menus', 999 );
function my_remove_menus() {
	remove_submenu_page( 'themes.php', 'themes.php' );
	remove_submenu_page( 'themes.php', 'customize.php' );
	remove_submenu_page( 'themes.php', 'widgets.php' );
	remove_submenu_page( 'themes.php', 'theme-editor.php' );
}