Skip to content

Instantly share code, notes, and snippets.

@sirviejo
Created February 5, 2014 14:16
Show Gist options
  • Save sirviejo/8824440 to your computer and use it in GitHub Desktop.
Save sirviejo/8824440 to your computer and use it in GitHub Desktop.
Wordpress - wp_list_categories Remove title attributes without touching core files
$subcategories = wp_list_categories( $subcat_args );
$subcategories = preg_replace('/title="([^"]+)"/', 'title=""', $subcategories);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment