
04-03-2011, 02:36 PM
|
|
Administrator
|
|
Join Date: Aug 2010
Posts: 85
Thanks: 7
Thanked 21 Times in 20 Posts
|
|
Remove ‘View all posts filed under’ title from category links
Open: /wp-includes/classes.php
Find:
Code:
$link .= 'title="' . sprintf(__( 'View all posts filed under %s' ), $cat_name) . '"';
Replace with:
Code:
$link .= 'title="' . sprintf(__( '%s' ), $cat_name) . '"';
* If you dont know how to edit wordpress files, find someone who does *
You may have to edit this file each time you upgrade Wordpress.
Credit: Toastboy.Com
|