Edit Snippet › chen-recipes — וורדפרס

PHOTO EMBED

Wed Feb 07 2024 10:12:45 GMT+0000 (Coordinated Universal Time)

Saved by @chen #undefined

function exclude_pages_from_search($query) {

    if ( $query->is_main_query() && $query->is_search ) {

        // Define the page IDs to exclude

        $exclude_ids = array(214, 222, get_option('page_on_front'));

​
6
        // Set the 'post__not_in' parameter

        $query->set('post__not_in', $exclude_ids);

    }
9
}

​

add_action('pre_get_posts', 'exclude_pages_from_search');

​
content_copyCOPY

https://www.chen-recipes.co.il/wp-admin/admin.php?page