Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1370239

    Kann ich eine Suche (hier auf der Startseite) so einschränken, dass nur Beiträge aber keine Seiten durchsucht und als Ergebnisse angezeigt werden? https://imgur.com/a/bLNLw9x

    Danke und lg, Alex

    #1370408

    Du möchtest für eine spezielle Seite nur die Suchfunktion einschränken – wohingegen die anderen Seite alle Beiträge/Seiten durchsuchen?

    #1370415

    Hi,

    Thank you for the inquiry.

    You can try this filter in the functions.php file to exclude other posts types from the search results when using the search field on the home page.

    
    function avf_modify_ajax_search_query($search_parameters) {
    	if ( is_admin() ) return;
    
        parse_str($search_parameters, $params);
    
        if( is_home() || is_front_page() )  {
    		$params['post_type'] = 'post';
        }
    
        $search_parameters = http_build_query($params);
    
        return $search_parameters;
    }
    
    add_filter('avf_ajax_search_query', 'avf_modify_ajax_search_query', 10, 1);
    

    Best regards,
    Ismael

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.