Conversation
supportHello, how can I exclude pinned posts?
OK i found it: In hook.php find line 278-297 and replace to this code: if($sort_by == "Comments") { $args = array( 'post_type' => $select_posttype, 'posts_per_page'=> $no_posts, 'orderby' => 'comment_count', 'order' => 'DESC', 'ignore_sticky_posts' => 1, ); } else { $args = array( 'post_type' => $select_posttype, 'posts_per_page'=> $no_posts, 'meta_key' => 'wli_pp_post_views_count', 'orderby' => 'meta_value_num', 'ignore_sticky_posts' => 1, ); }
OK i found it: In hook.php find line 278-297 and replace to this code: if($sort_by == "Comments") { $args = array( 'post_type' => $select_posttype, 'posts_per_page'=> $no_posts, 'orderby' => 'comment_count', 'order' => 'DESC', 'ignore_sticky_posts' => 1, ); } else { $args = array( 'post_type' => $select_posttype, 'posts_per_page'=> $no_posts, 'meta_key' => 'wli_pp_post_views_count', 'orderby' => 'meta_value_num', 'ignore_sticky_posts' => 1, ); }