Skip to content

Instantly share code, notes, and snippets.

@yoren
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoren/8f8b0fb54a9956016182 to your computer and use it in GitHub Desktop.
Save yoren/8f8b0fb54a9956016182 to your computer and use it in GitHub Desktop.
Add icons to wp_list_categories
<?php
function my_list_categories( $output, $args ) {
$pattern = '/(<a.*?>)/';
$replacement = '$1<i class="ico-my"></i> ';
return preg_replace( $pattern, $replacement, $output );
}
add_filter( 'wp_list_categories', 'my_list_categories', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment