wp admin - Appearance -> Menus doesn't show

admin2025-06-04  7

Ony of my colleges started with the implementation of a new theme, I'm trying to add Menus but the option doesn't show.

anyone know how to bring that back? thx.

Ony of my colleges started with the implementation of a new theme, I'm trying to add Menus but the option doesn't show.

anyone know how to bring that back? thx.

Share Improve this question asked Jan 7, 2019 at 8:19 Yoni hodefiYoni hodefi 233 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

Please add following code into your theme functions.php file

function pietergoosen_theme_setup() {
  register_nav_menus( array( 
    'header' => 'Header menu', 
    'footer' => 'Footer menu' 
  ) );
 }

add_action( 'after_setup_theme', 'pietergoosen_theme_setup' );

Please check at your end and let me know if any query.

Hope it will help you.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749036812a315820.html

最新回复(0)