• Resolved zzuum

    (@zzuum)


    Hello,
    In my Appearance i only have Themes, Customize and Edit… Why I don’t see Menu options…

    Here is mu function.php

    <?php

    // Menu
    register_nav_menu(‘primary’,’primary_menu’);

    add_theme_support( ‘Menus’ );

    add_theme_support( ‘custom-background’ );

    function wpb_widgets_init() {

    register_sidebar( array(
    ‘name’ => __( ‘Main Sidebar’, ‘wpb’ ),
    ‘id’ => ‘sidebar-1’,
    ‘description’ => __( ‘The main sidebar appears on the right on each page except the front page template’, ‘wpb’ ),
    ‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</aside>’,
    ‘before_title’ => ‘<h3 class=”widget-title”>’,
    ‘after_title’ => ‘</h3>’,
    ) );

    register_sidebar( array(
    ‘name’ =>__( ‘Front page sidebar’, ‘wpb’),
    ‘id’ => ‘sidebar-2’,
    ‘description’ => __( ‘Appears on the static front page template’, ‘wpb’ ),
    ‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</aside>’,
    ‘before_title’ => ‘<h3 class=”widget-title”>’,
    ‘after_title’ => ‘</h3>’,
    ) );
    }
    add_action( ‘widgets_init’, ‘wpb_widgets_init’ );
    ?>

    Where is my error :S ??

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Don't see Appearance / Menu in Admin Dashboard…’ is closed to new replies.