function titleLimitChar($title){ if(strlen($title) > 55 && !(is_single()) && !(is_page())){ // not in single post page and page. $title = substr($title,0,55) . ".."; } return $title; } add_filter( 'the_title', 'titleLimitChar' );
Subscribe
Login
0 Comments
Most Voted