PluginProbe ʕ •ᴥ•ʔ
Widget Options – Advanced Conditional Visibility for Gutenberg Blocks & Classic Widgets / 3.7.8
Widget Options – Advanced Conditional Visibility for Gutenberg Blocks & Classic Widgets v3.7.8
4.2.5 4.2.4 trunk 3.7.10 3.7.11 3.7.12 3.7.13 3.7.14 3.7.2 3.7.5 3.7.6 3.7.7 3.7.8 3.7.9 3.8 3.8.1 3.8.10 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.8.8 3.8.9 3.8.9.1 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 3.9.5 3.9.6 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.5.1 4.0.6 4.0.6.1 4.0.7 4.0.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.2.0 4.2.1 4.2.2 4.2.3
widget-options / includes / admin / globals.php
widget-options / includes / admin Last commit date
settings 5 years ago globals.php 5 years ago import-export.php 5 years ago notices.php 5 years ago welcome.php 5 years ago
globals.php
22 lines
1 <?php
2 /**
3 * Add values to global variables
4 *
5 *
6 * @copyright Copyright (c) 2017, Jeffrey Carandang
7 * @since 3.3.1
8 */
9
10 if( !function_exists( 'widgetopts_register_globals' ) ){
11 add_action( 'init', 'widgetopts_register_globals', 90 );
12 function widgetopts_register_globals(){
13 global $widgetopts_taxonomies, $widgetopts_types, $widgetopts_categories;
14
15 $widgetopts_taxonomies = widgetopts_global_taxonomies();
16 $widgetopts_types = widgetopts_global_types();
17 $widgetopts_categories = widgetopts_global_categories();
18
19 }
20 }
21 ?>
22