Excerpts become full of content
-
Dear guys.
I have a problem after update to wordpress 4.3 that never happen before.
The problem is on my homepage all of article display full of content instead of post excerpts which I chose from Theme Options in the dashboard.
And the function of theme options > blog> Excerpt Length seems not working any more.
I’ve try to modify code below from function.php followed this article
/* Excerpt ending /* ------------------------------------ */ if ( ! function_exists( 'alx_excerpt_more' ) ) { function alx_excerpt_more( $more ) { return '...'; } } add_filter( 'excerpt_more', 'alx_excerpt_more' ); /* Excerpt length /* ------------------------------------ */ if ( ! function_exists( 'alx_excerpt_length' ) ) { function alx_excerpt_length( $length ) { return ot_get_option('excerpt-length',$length); } } add_filter( 'excerpt_length', 'alx_excerpt_length', 999 );
But look likes work in vain. Even I deleted it, the result is still the same.
Could you guys give a hand? Any suggestion would be grateful. Thanks for your attention.
- The topic ‘Excerpts become full of content’ is closed to new replies.