Robertas Ankudovicius
New Member
Is there are any way to show specific products on the front page?
I am tryed to change the query but did not find function "query_posts"(it doesn't exist) in the theme code.
$args = [
'post_type' => 'product',
'posts_per_page' => $posts_per_page,
'_orderby' => 'promotionVolume',
'_order' => 'DESC',
'post__not_in' => $GLOBAL[ 'id_post_show' ]
];
query_posts( $args );
Maybe some of you have modified theme code in purpose to retrieve specific products on the front page?
Thanks!
I am tryed to change the query but did not find function "query_posts"(it doesn't exist) in the theme code.
$args = [
'post_type' => 'product',
'posts_per_page' => $posts_per_page,
'_orderby' => 'promotionVolume',
'_order' => 'DESC',
'post__not_in' => $GLOBAL[ 'id_post_show' ]
];
query_posts( $args );
Maybe some of you have modified theme code in purpose to retrieve specific products on the front page?
Thanks!