Quantcast Simple WordPress Title Limit Function | Source and Code System
Browsing articles tagged with " Simple WordPress Title Limit Function"

Simple WordPress Title Limit Function

Jun 17, 2010  ¦¦  by admin  ¦¦  WordPress  ¦¦  42 Comments
Put this code in to your function.php (Note: Fix php tag!)- < ?php  function the_title2($before = ”, $after = ”, $echo = true, $length = false) { $title = get_the_title(); if ( $length && is_numeric($length) ) { $title = substr( $title, 0, $length ); } if ( strlen($title)> 0 ) { $title = apply_filters(‘the_title2′, $before . $title . $after, $before, $after); if ( $echo ) echo ...