After installing this plugin, random post is not getting
-
Beofre, installing this plugin all posts are getting randomly. But, after installing this plugin and once save reorder, random post is not working.
Even i deactivate or deleted the plugin, posts are not getting randomly.my code is below :
$args_post=array(
‘post_type’ => ‘people’,
‘post_status’ => ‘publish’,
‘orderby’ => ‘name’,
‘order’ => ‘rand’,
‘tax_query’ => array(
array(
‘taxonomy’ => ‘people_taxonomy’,
‘field’ => ‘slug’,
‘terms’ => ‘experts’,
‘operator’ => ‘NOT IN’,
)
),
‘posts_per_page’ => -1,
‘caller_get_posts’=> 1
);$all_people_posts = get_posts($args_post);
Please help and give a solution.
Thanks and Regards.
The topic ‘After installing this plugin, random post is not getting’ is closed to new replies.