Exclude Posts
-
Hello,
I want to ask how I can exclude post from showing in the best week views if it showing in the best month views?I use the code for week views :
<?php
if ( function_exists(‘wpp_get_mostpopular’) ) {
wpp_get_mostpopular(array(
‘limit’ => 5,
‘range’ => ‘last7days’,
‘order_by’ => ‘views’,
‘stats_views’ => 0
));
}
?>And this code for month views :
<?php
if ( function_exists(‘wpp_get_mostpopular’) ) {
wpp_get_mostpopular(array(
‘limit’ => 5,
‘range’ => ‘last30days’,
‘order_by’ => ‘views’,
‘stats_views’ => 0
));
}
?>
- The topic ‘Exclude Posts’ is closed to new replies.