Home / Admin / Minimal WordPress Search
Duplicate Snippet

Embed Snippet on Your Site

Minimal WordPress Search

Limit the Wordpress default search to title only. Improve search performance and user experience on content heavy sites.

Code Preview
php
<?php
add_filter( 'post_search_columns', function( $columns ) {
    return [ 'post_title' ];
} );   

Comments

Add a Comment