Hello,
current X, Design > X Customizer > Blog > Excerpt Length is not working; always truncated at 60 chars.
Im using “Post Grid” along with a custom Grid Element (from Grid Builder). I’ve also tried two hacks:
add_filter(‘excerpt_length’, ‘custom_excerpt_length’, 999 );
function custom_excerpt_length($length) {
return 2000;
}
add_filter( ‘excerpt_length’, ‘x_excerpt_length’ );
function x_excerpt_length( $length ) {
return x_get_option( ‘x_blog_excerpt_length’, ‘600’ );
}
Still, does not work.
Any suggestions ?
Jan