excerpt


function the_excerpt_max_charlength($charlength) {
	$excerpt = get_the_excerpt();
	$charlength++;

	if ( mb_strlen( $excerpt ) > $charlength ) {
		$subex = mb_substr( $excerpt, 0, $charlength - 5 );
		$exwords = explode( ' ', $subex );
		$excut = - ( mb_strlen( $exwords[ count( $exwords ) - 1 ] ) );
		if ( $excut < 0 ) {
			echo mb_substr( $subex, 0, $excut );
		} else {
			echo $subex;
		}
		echo '[...]';
	} else {
		echo $excerpt;
	}
}

Wordpress

Hope this helps and happy coding :)

Zobacz jeszcze

Wyświetlenie danych z tablicy

-- <?php //Tworzymy przykładową tablice $tablica = <a...

All current

-- #main-menu ul li > a { background-color: #b9c9d8; color:...