acf.php
5 years ago
alignment.php
5 years ago
animation.php
5 years ago
beaver_builder.php
5 years ago
cache.php
5 years ago
classes.php
5 years ago
clone.php
5 years ago
columns.php
5 years ago
dates.php
5 years ago
devices.php
5 years ago
disable_widgets.php
5 years ago
elementor.php
5 years ago
fixed.php
5 years ago
import-export.php
5 years ago
links.php
5 years ago
logic.php
5 years ago
move.php
5 years ago
permission.php
5 years ago
roles.php
5 years ago
search.php
5 years ago
shortcodes.php
5 years ago
sidebar-more_plugins.php
5 years ago
sidebar-opt_in.php
5 years ago
sidebar-support_box.php
5 years ago
sidebar-upsell_pro.php
5 years ago
siteorigin.php
5 years ago
sliding.php
5 years ago
state.php
5 years ago
styling.php
5 years ago
taxonomies.php
5 years ago
title.php
5 years ago
urls.php
5 years ago
visibility.php
5 years ago
widget-area.php
5 years ago
sidebar-more_plugins.php
36 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Support Sidebar Metabox |
| 4 | * Settings > Widget Options |
| 5 | * |
| 6 | * @copyright Copyright (c) 2016, Jeffrey Carandang |
| 7 | * @since 4.0 |
| 8 | */ |
| 9 | |
| 10 | // Exit if accessed directly |
| 11 | if ( ! defined( 'ABSPATH' ) ) exit; |
| 12 | |
| 13 | /** |
| 14 | * Create Metabox for Support |
| 15 | * |
| 16 | * @since 4.0 |
| 17 | * @return void |
| 18 | */ |
| 19 | if( !function_exists( 'widgetopts_settings_more_plugins' ) ): |
| 20 | function widgetopts_settings_more_plugins(){ ?> |
| 21 | <div id="widgetopts-sidebar-widget-more_plugins" class="postbox widgetopts-sidebar-widget"> |
| 22 | <h3 class="hndle ui-sortable-handle"><span><?php _e( 'Ready for Gutenberg?', 'widget-options' );?></span></h3> |
| 23 | <div class="inside"> |
| 24 | <p><?php _e( 'Get the same controls for your Gutenberg blocks using our brand new plugin Block Options for Gutenberg. Also available for free on plugin repository.', 'widget-options' );?></p> |
| 25 | <p> |
| 26 | <a class="button-secondary" href="https://wordpress.org/plugins/block-options/" target="_blank"><?php _e( 'Download Block Options', 'widget-options' );?></a> |
| 27 | </p> |
| 28 | </div> |
| 29 | </div> |
| 30 | |
| 31 | <?php |
| 32 | } |
| 33 | //add_action( 'widgetopts_module_sidebar', 'widgetopts_settings_more_plugins', 25 ); |
| 34 | endif; |
| 35 | ?> |
| 36 |