• 05-06-2014, 12:05:45
    #1
    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.

  • 08-06-2014, 02:59:28
    #2
    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' );
    }
  • 17-06-2014, 21:26:15
    #3
    ozgurland adlı üyeden alıntı: mesajı görüntüle
    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' );
    }
    teşekkürler hocam allah razı olsun oldu.