PluginProbe
Post Grid Gutenberg Blocks – PostX / 2.9.7
Post Grid Gutenberg Blocks – PostX v2.9.7
5.0.39 5.0.38 5.0.37 5.0.36 5.0.35 5.0.34 5.0.33 5.0.32 5.0.31 5.0.30 5.0.29 5.0.28 5.0.27 5.0.26 5.0.25 5.0.23 5.0.24 5.0.22 5.0.21 5.0.20 5.0.19 5.0.18 5.0.17 2.1.1 2.1.2 All 237 releases
ultimate-post / classes / options / Banner.php

Banner.php in Post Grid Gutenberg Blocks – PostX 2.9.7, at classes/options/Banner.php

34 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Notice Action.
4 *
5 * @package ULTP\Notice
6 * @since v.2.6.0
7 */
8 namespace ULTP;
9
10 defined('ABSPATH') || exit;
11
12 /**
13 * Functions class.
14 */
15 class Banner{
16 public function premium_feature_sidebar($page) {?>
17 <div class="ultp-aside-content ultp-card ultp-p25">
18 <h3 class="ultp-sm-heading"><?php esc_html_e('Plugins Feature', 'ultimate-post'); ?></h3>
19 <p><?php esc_html_e('PostX plugin helps to create beautiful post grid, post listing, dynamic post slider and post carousel within a few seconds.', 'ultimate-post'); ?></p>
20 <ul class="ultp-sidebar-list">
21 <li><?php esc_html_e('Dynamic Site Builder.', 'ultimate-post'); ?></li>
22 <li><?php esc_html_e('Custom Taxonomy Support.', 'ultimate-post'); ?></li>
23 <li><?php esc_html_e('Block Layout Options.', 'ultimate-post'); ?></li>
24 <li><?php esc_html_e('Ready-made Start Packs.', 'ultimate-post'); ?></li>
25 <li><?php esc_html_e('Advanced Quick Query Feature.', 'ultimate-post'); ?></li>
26 <li><?php esc_html_e('Get Category Specific Color and Image Feature.', 'ultimate-post'); ?></li>
27 <li><?php esc_html_e('Get Fast & Quick Support.', 'ultimate-post'); ?></li>
28 </ul>
29 <?php if(!ultimate_post()->is_lc_active()) {?>
30 <a href="<?php echo esc_url(ultimate_post()->get_premium_link('', $page == 'getting_start' ? 'menu_started_upgrade_pro' : 'menu_settings_upgrade-pro')); ?>" target="_blank" class="ultp-btn ultp-btn-primary ultp-btn-pro"><?php esc_html_e('Upgrade Pro ➤', 'ultimate-post'); ?></a>
31 <?php } ?>
32 </div>
33 <?php }
34 }