Changeset 2217831
- Timestamp:
- 12/25/2019 02:49:34 PM (6 years ago)
- Location:
- embe-core/trunk
- Files:
-
- 2 edited
-
embe-core.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
embe-core/trunk/embe-core.php
r2217825 r2217831 4 4 * Plugin URI: http://alithemes.com 5 5 * Description: Core Features for EmBe Theme, this is required plugin for this theme 6 * Version: 1.06 * Version: 2.0 7 7 * Author: alithemes.com 8 8 * Author URI: alithemes.com … … 27 27 function alith_embe_plugin_enqueue_scripts() { 28 28 wp_enqueue_style( 'alith_embe_plugin_style', ALITH_CORE_PLUGIN_URL . 'assets/style.css', array(), '1.0'); 29 wp_enqueue_script('alith_embe_metabox_scripts', ALITH_CORE_PLUGIN_URL . 'assets/ metabox.scripts.js',array('jquery'), '1.0',true);29 wp_enqueue_script('alith_embe_metabox_scripts', ALITH_CORE_PLUGIN_URL . 'assets/alithcore.scripts.js',array('jquery'), '1.0',true); 30 30 } 31 31 add_action( 'admin_enqueue_scripts', 'alith_embe_plugin_enqueue_scripts'); … … 57 57 include_once( 'widgets/categories_tabs.php' ); 58 58 59 //color picker 60 if ( ! function_exists( 'alith_core_color_picker' ) ) { 61 function alith_core_color_picker() { 62 wp_enqueue_style( 'wp-color-picker' ); 63 wp_enqueue_script( 'wp-color-picker' ); 64 } 65 add_action( 'load-widgets.php', 'alith_core_color_picker' ); 66 } 67 59 68 //Deactive plugin 60 69 register_deactivation_hook(__FILE__, 'alith_core_deactivation'); -
embe-core/trunk/readme.txt
r2216696 r2217831 74 74 == Changelog == 75 75 76 = VERSION 1.5 [ Current ] = 77 * Add About tab when active theme 78 * Mega menu build-in update 79 * More Latest Post layout 80 * Fix some CSS and Jquery bugs 81 82 = VERSION 1.4 = 83 * More options for sidebar 84 85 = VERSION 1.3 = 86 * Add Offcanvas options. 87 * Fixed the image resize function. 88 89 = VERSION 1.2 = 90 * Add Lifestyle Layout Demo 91 * Add 6 widget title styles 92 * Fixed somes CSS bugs 93 94 = VERSION 1.1 = 76 = VERSION 2.0 = 95 77 * Add sidebar & widgets options 78 * Change skill 96 79 97 80 = VERSION 1.0 =
Note: See TracChangeset
for help on using the changeset viewer.