classes.php hack missing in 2.9
-
Before I upgraded to 2.9, I had a great hack for classes.php (in WP Includes) which makes all the difference to my site. I can’t remember where I found it, but it ran like this.
$link .= ‘title=”‘ . sprintf(__( ‘View all posts filed under %s’ ), $cat_name) . ‘”‘;
else
21.4 Change this to read as follows:$link .= ‘title=”‘ . sprintf(__( ‘See all articles filed under %s’ ), $cat_name) . ‘”‘;
Problem is, in 2.9 there seems to be NO classes.php. I’ve searched every script with the word ‘class’ in it to find the above code, but no luck. Where did classes.php go? And if it’s gone for good, how can I achieve the same hack in 2.9?
You can see that all I want to change is that line of text on the hover which says ‘View all posts filed under’ to ‘See all articles filed under’. There MUST be an easy way of doing this in 2.9?
- The topic ‘classes.php hack missing in 2.9’ is closed to new replies.