Created
January 7, 2021 09:34
-
-
Save 0x7466/52150c61bb8af8b2e3bc3e898834d83a to your computer and use it in GitHub Desktop.
Hello Elementor - Enable Widgets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @link https://tfm.agency | |
* @since 1.0.0 | |
* @package Hello Elementor - Enable Widgets | |
* | |
* @wordpress-plugin | |
* Plugin Name: Hello Elementor - Enable Widgets | |
* Plugin URI: https://tfm.agency | |
* Description: Enable Widgets in Hello Elementor Theme. | |
* Version: 1.0.0 | |
* Author: TFM Agency GmbH | |
* Author URI: https://tfm.agency | |
* License: GPL-2.0+ | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt | |
* Text Domain: tfm-hello-elementor-enable-widgets | |
*/ | |
// If this file is called directly, abort. | |
if (!defined('WPINC')) { | |
die; | |
} | |
if (function_exists("register_sidebar")) { | |
register_sidebar(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment