Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Seodev

    (@seodev)

    Solved it. You need to make a menu for this to work, to activate the menu system in functions.php:

    // Add Your Menu Locations
    function register_my_menus() {
    register_nav_menus(
    array(
    ‘header_navigation’ => __( ‘Header Navigation’ ),
    ‘expanded_footer’ => __( ‘Expanded Footer’ )
    )
    );
    }
    add_action( ‘init’, ‘register_my_menus’ );

    Hi Seodev,

    I was going to say this isn’t meant to show posts, but to deal with your sites menus.

    As such the way you have done it is correct.

    Many thanks

    Peter

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Not showing posts’ is closed to new replies.