Advertisement
miriamdepaula

WordPress: alterando "alt text" do wp_list_categories()

Nov 8th, 2011
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2.  
  3. add_filter('wp_list_categories', 'remove_category_link_prefix');
  4.  
  5. function remove_category_link_prefix($output) {
  6.     return str_replace('View all posts filed under ', '', $output);
  7. }
  8.  
  9. ?>
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement