PluginProbe
WP Ultimate Post Grid / 3.9.0
WP Ultimate Post Grid v3.9.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
wp-ultimate-post-grid / templates / admin / menu / addons.php

addons.php in WP Ultimate Post Grid 3.9.0, at templates/admin/menu/addons.php

43 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template for the addons page.
4 *
5 * @link https://bootstrapped.ventures
6 * @since 3.0.0
7 *
8 * @package WP_Ultimate_Post_Grid
9 * @subpackage WP_Ultimate_Post_Grid/templates/admin/menu
10 */
11
12 ?>
13
14 <div class="wrap wpupg-addons">
15 <h1><?php echo esc_html_e( 'Upgrade WP Ultimate Post Grid', 'wp-ultimate-post-grid' ); ?></h1>
16 <div class="wpupg-addons-bundle-container">
17 <h2>Premium Bundle</h2>
18 <?php if ( WPUPG_Addons::is_active( 'premium' ) ) : ?>
19 <p>You already have these features!</p>
20 <?php else : ?>
21 <ul>
22 <li>Limit your posts by any taxonomy, author, date or post ID</li>
23 <li>Use a plain text filter for your grid</li>
24 <li>Have dropdown filters for any taxonomy</li>
25 <li>Allow for multiselect in the filters</li>
26 <li>Show the post count for the filter terms</li>
27 <li>Extensive Template Editor to create any grid you want</li>
28 <li>Create a grid of your categories or tags</li>
29 <li>A Load More button for pagination</li>
30 <li>Load on filter pagination</li>
31 <li>Infinite scroll pagination</li>
32 <li>Easily clone your grids</li>
33 <li>Order grid by custom field</li>
34 <li>Dynamically filter grids in the shortcode</li>
35 <li>...and more coming up!</li>
36 </ul>
37 <div class="wpupg-addons-button-container">
38 <a class="button button-primary" href="https://bootstrapped.ventures/wp-ultimate-post-grid/get-the-plugin/" target="_blank">Learn More</a>
39 </div>
40 <?php endif; // Premium active. ?>
41 </div>
42 </div>
43