Skip to content

Instantly share code, notes, and snippets.

@KnightAlex
Created March 12, 2012 20:30
Show Gist options
  • Save KnightAlex/2024508 to your computer and use it in GitHub Desktop.
Save KnightAlex/2024508 to your computer and use it in GitHub Desktop.
Wordpress: remove classes from wp_list_pages
// just add this to functions.php
function remove_page_class($wp_list_pages) {
$pattern = '/\<li class="page_item[^>]*>/';
$replace_with = '<li>';
return preg_replace($pattern, $replace_with, $wp_list_pages);
}
add_filter('wp_list_pages', 'remove_page_class');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment