PluginProbe
WP Ultimate Post Grid / 2.4.0
WP Ultimate Post Grid v2.4.0
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
← All changes | helpers/grid_cache.php +0 -5 2.5.02.4.0 View file →
@@ -152,13 +152,8 @@
152 152 $post_ids = array_map( 'intval', $posts );
153 153
154 154 $post_ids = apply_filters( 'wpupg_grid_cache_post_ids', $post_ids, $grid );
155 155
156 - // Offset posts
157 - if( $grid->limit_posts_offset() ) {
158 - $post_ids = array_slice($post_ids, $grid->limit_posts_offset() );
159 - }
160 -
161 156 // Limit Total # Posts
162 157 if( $grid->limit_posts_number() ) {
163 158 $post_ids = array_slice($post_ids, 0, $grid->limit_posts_number() );
164 159 }