trim title on an only single page
-
I want to trim title on an only single page. (page-id : 3988)
function limit_word_count($title) {
$len = 5; //change this to the number of words
if(!is_page(3988)){if (str_word_count($title) > $len) {
$keys = array_keys(str_word_count($title, 2));
$title = substr($title, 0, $keys[$len]);
}return $title;
}
}
add_filter(‘the_title’, ‘limit_word_count’);I’m trying this code. But it’s not working.
Can anybody please help me with this.
Regards,
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘trim title on an only single page’ is closed to new replies.