How to exclude Excerpt from WordPress Search Result - BuddyX Theme

Опубликовано: 07 Апрель 2026
на канале: Wbcom Designs
132
1

You can add a filter to remove the excerpt. Checkout WordPress search plugins to get more customized search features.
https://wbcomdesigns.com/best-wordpre...

add_filter( 'the_excerpt', 'filter_the_excerpt', 10, 2 );
function filter_the_excerpt( ) {
return ' ';
}
Source: WordPress.org
#WordPress #Tutorial #webdesign