| 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.0.6 |
| 7 |
* Author: Kaspars Dambis |
| 8 |
* Author URI: https://kaspars.net |
| 9 |
* Text Domain: widget-context |
| 10 |
*/ |
| 11 |
|
| 12 |
include dirname( __FILE__ ) . '/class/class-widget-context.php'; |
| 13 |
|
| 14 |
// Go! |
| 15 |
$plugin = widget_context::instance(); |
| 16 |
$plugin->init(); |
| 17 |
|