PluginProbe
Widget Context / 1.1.0
Widget Context v1.1.0
1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.1.0 1.1.1 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 trunk 0.4.1 0.4.2 0.4.3 0.4.4 0.4.5 0.6 0.7 0.7.1 0.7.2 0.8 0.8.1 All 30 releases
widget-context / widget-context.php

widget-context.php in Widget Context 1.1.0, at widget-context.php

18 lines 461 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Widget Context
4 * Plugin URI: https://widgetcontext.com
5 * Description: Show or hide widgets depending on the section of the site that is being viewed.
6 * Version: 1.1.0
7 * Author: Preseto
8 * Author URI: https://preseto.com
9 * Text Domain: widget-context
10 */
11
12 require_once dirname( __FILE__ ) . '/class/class-widget-context.php';
13
14 // Go!
15 $plugin = widget_context::instance();
16 $plugin->set_path( dirname( __FILE__ ) );
17 $plugin->init();
18