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/content.php +2 -3 1.62.4.0 View file →
@@ -18,11 +18,10 @@
18 18 remove_filter( 'the_content', array( $this, 'content_filter' ), 10 );
19 19
20 20 $grid = new WPUPG_Grid( get_post() );
21 21
22 - $content .= '<div class="wpupg-grid">';
23 - $content .= $grid->draw_posts();
24 - $content .= '</div>';
22 + $content .= '[wpupg-filter id="' . $grid->slug() . '"]';
23 + $content .= '[wpupg-grid id="' . $grid->slug() . '"]';
25 24
26 25 add_filter( 'the_content', array( $this, 'content_filter' ), 10 );
27 26 }
28 27