Category: Travel Tips
Sorry, but nothing was found. Please try a search with different keywords.
// Exclude posts marked with exclude_from_blog meta from the main blog feed add_action("pre_get_posts", function($query) { if (!is_admin() && $query->is_main_query() && ($query->is_home() || $query->is_feed())) { $query->set("meta_query", array( "relation" => "OR", array( "key" => "exclude_from_blog", "compare" => "NOT EXISTS", ), array( "key" => "exclude_from_blog", "value" => "1", "compare" => "!=", ), )); } });
Sorry, but nothing was found. Please try a search with different keywords.