Wordpress theme not creating own menu on live server Wordpress theme not creating own menu on live server wordpress wordpress

Wordpress theme not creating own menu on live server


Turn on WP_DEBUG and see if any errors appear on your remote host. And post the errors here so we can help debug any issues that appear.


It is possible to turn off menu points via php functions. You could either look for this by yourself, for example in the functions.php, or paste the code in here with PASETBIN or something similiar....

Probably the code could look like this:

add_action( 'admin_menu', 'my_remove_menu_pages' );function my_remove_menu_pages() {remove_menu_page('link-manager.php');   }

P.S.:link-manager.php is only an example.