Changeset 1219123
- Timestamp:
- 08/12/2015 12:31:06 PM (11 years ago)
- Location:
- scode-by-mojwp/trunk
- Files:
-
- 1 added
- 4 edited
-
assets/css/admin-style.css (modified) (1 diff)
-
includes/admin.php (modified) (1 diff)
-
includes/global.php (added)
-
readme.txt (modified) (2 diffs)
-
scode.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
scode-by-mojwp/trunk/assets/css/admin-style.css
r1186666 r1219123 1 2 1 a#addShortcodeModalButton:link, a#addShortcodeModalButton:visited { 3 2 background: #2ea2cc; -
scode-by-mojwp/trunk/includes/admin.php
r1189583 r1219123 10 10 if ($hook_suffix == 'toplevel_page_scode' || $hook_suffix == 'scode_page_scode_support') { 11 11 wp_enqueue_style('scode_font_awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css', array(), false); 12 wp_enqueue_style('scode_backend_style', SCODE_PLUGIN_URL.'assets/css/admin-style.css', array(), false);13 12 wp_enqueue_script('jquery-ui-position'); 14 13 wp_enqueue_script('scode_backend_js', SCODE_PLUGIN_URL.'assets/js/jquery.scode.js', array('jquery'), false, true); 15 14 16 15 } 16 17 wp_enqueue_style('scode_backend_style', SCODE_PLUGIN_URL.'assets/css/admin-style.css', array(), false); 17 18 } 18 19 -
scode-by-mojwp/trunk/readme.txt
r1189590 r1219123 2 2 Contributors: mojwp, kaliyan 3 3 Tags: AJAX, shortcode, shortcodes, tabs, Post, posts, image, seo, page, pages, widget, CSS, editor, shortlinks, filter, price, admin 4 Requires at least: 4. 2.25 Tested up to: 4.2. 24 Requires at least: 4.0 5 Tested up to: 4.2.4 6 6 Stable tag: trunk 7 7 … … 79 79 == Changelog == 80 80 81 = 1.1.2 = 82 Add link "My shordcodes" to Admin Bar 83 81 84 = 1.1.1 = 82 85 Update instruction -
scode-by-mojwp/trunk/scode.php
r1189587 r1219123 5 5 Description: Easy way to creat and manage shortcode from Admin panel site. Создавайте и управляйте шорткодами прямо из админки сайта. 6 6 Author: mojWP 7 Version: 1.1. 17 Version: 1.1.2 8 8 Author URI: http://mojwp.ru/ 9 9 Text Domain: scode … … 17 17 } 18 18 19 define('SCODE_VERSION', '1.1. 1');19 define('SCODE_VERSION', '1.1.2'); 20 20 define('SCODE_PLUGIN_DIR', plugin_dir_path(__FILE__)); 21 21 define('SCODE_PLUGIN_URL', plugin_dir_url(__FILE__)); … … 32 32 33 33 require_once(SCODE_PLUGIN_DIR . '/includes/functions.php'); 34 require_once(SCODE_PLUGIN_DIR . '/includes/global.php'); 34 35 if (is_admin()) { 35 36 require_once(SCODE_PLUGIN_DIR . '/includes/admin.php');
Note: See TracChangeset
for help on using the changeset viewer.