• sirthaddeus

    (@sirthaddeus)


    I have the following code in my header:

    <?php
    add_filter('wp_list_pages','remove_title');
    function remove_title($content) {
    $content = preg_replace('/title=\"(.*?)\"/','',$content);
    return $content;
    }
    wp_list_pages('title_li=&sort_order=ASC&sort_column=menu_order');
    ?>

    How do allow for certain pages to be listed and not others?
    ie. – sitemap, terms, and privacy pages i do not want in my main menu

    thanks in advance

Viewing 1 replies (of 1 total)
  • Samuel B

    (@samboll)

    to exclude pages
    wp_list_pages('title_li=&sort_order=ASC&sort_column=menu_order&exclude=3,26,143');
    replace numbers with your actual page id’s

Viewing 1 replies (of 1 total)

The topic ‘List pages’ is closed to new replies.