| 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 |
|