Answer the question
In order to leave comments, you need to log in
Change the value of have_posts when adaptive?
Guys, how to change the value of the have_posts cycle? That is, so that 12 posts are displayed on the computer, and 5 on the phone, for example?
$params = array(
'posts_per_page' => 12,
);
Answer the question
In order to leave comments, you need to log in
You can use https://wp-kama.ru/function/wp_is_mobile.
$params = array(
if( wp_is_mobile() ){ // Если с мобильных устройств
'posts_per_page' => 5, // показываем 5 постов
} else { // если с других устройств
'posts_per_page' => 12, // показываем 12 постов
}
);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question