Disable Excerpt On HomePage
-
Hi, I want to disable
the_excerpt
So I used this code.add_filter( 'the_excerpt', 'filter_the_excerpt', 10, 2 ); function filter_the_excerpt( ) { return ' '; }
But this function also removed the Read More button
How to disable
the_excerpt
without removing the readmore button.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Disable Excerpt On HomePage’ is closed to new replies.