Modifiying the post title with filter
-
I am trying to modify the post title with a filter. Titles of pages shall not be changed. I tried:
‘
add_filter( ‘the_title’, ‘ta_modified_post_title’);
function ta_modified_post_title ($title) {
$title = $title.’ (modified title)’;
return $title;
}
‘
.. but that did change the page titles, too.I tried different other filters (e.g. post_title, single_title) but without success. (Tried in the standard twentyten theme.)
Is there any solution for this problem without going into the template files themselfs?
Thank you for any help,
Thorsten
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Modifiying the post title with filter’ is closed to new replies.