Exclude one item from wp_list_pages( $args );

There’s a filter called wp_list_pages_exclude that you could possibly hook into (put this in your functions.php):

function filter_wp_list_pages($exclude){
    $exclude[] = 56;
    return $exclude;
}

add_filter("wp_list_pages_excludes", "filter_wp_list_pages");

Leave a Comment