Length of excerpt
-
How can I adjust the length of the excerpt shown at blog previews?
The default WP way by adding the following custom function to the (child) theme does not show any success.
function custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Neither do any adjustments or changes to the theme function in inc/extras.php show any results:
function accesspresslite_excerpt( $accesspresslite_content , $accesspresslite_letter_count ){ $accesspresslite_striped_content = strip_shortcodes($accesspresslite_content); $accesspresslite_striped_content = strip_tags($accesspresslite_striped_content); $accesspresslite_excerpt = mb_substr($accesspresslite_striped_content, 0, $accesspresslite_letter_count ); if($accesspresslite_striped_content > $accesspresslite_excerpt){ $accesspresslite_excerpt .= "..."; } #return $accesspresslite_excerpt; return 'test'; }
I actually want to set a certain amount of words instead of characters. How could I achieve that?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Length of excerpt’ is closed to new replies.