If i set posts_per_page=8 it shows less because it counts the hidden products also.
<?php
$args = array('post_type'=>'product','posts_per_page'=>8);
$query =new WP_Query($args);
$list = array();
while($query->have_posts()): $query->the_post();if(in_array(get_the_title(), $list)){continue;}
$list[]=...
Code (markup):
from PHP https://ift.tt/38x8mGU
via IFTTT
0 Comments