你很幸运,有一个过滤器。看见this line 在…内wp_list_pages()
:
$r[\'exclude\'] = implode( \',\', apply_filters(\'wp_list_pages_excludes\', $exclude_array) );
所以,只要
wp_list_pages_excludes
:
// add some new page ids to the exclude list
function my_banned_pages( $exclude_array ) {
return array_merge( $exclude_array, array( 12, 45 ) );
}
add_filter( \'wp_list_pages_excludes\', \'my_banned_pages\' );