Answer the question
In order to leave comments, you need to log in
How to filter articles on the front page in WordPress?
There was a task - to display on the main page of an article only with a certain label. How to do it?
Please do not send to Google, very urgent.
Thanks in advance.
Answer the question
In order to leave comments, you need to log in
Do you know how to write your own WP_Query? Add 'tag' => 'tag slug' to the arguments.
Or if you have a regular WP cycle on the main page, you can add code like
add_action('pre_get_posts','my_tag_query');
function my_tag_query($query){
if( $query->is_front_page() && $query->is_main_query() && ! $query->is_admin()) {
$query->set('tag', 'слаг метки');
}
};
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question