Changeset 1812024
- Timestamp:
- 01/30/2018 04:03:30 PM (8 years ago)
- Location:
- child-themify
- Files:
-
- 12 added
- 3 edited
-
tags/2.0.1 (added)
-
tags/2.0.1/assets (added)
-
tags/2.0.1/assets/css (added)
-
tags/2.0.1/assets/css/child-themify.css (added)
-
tags/2.0.1/assets/js (added)
-
tags/2.0.1/assets/js/child-themify.js (added)
-
tags/2.0.1/child-themify.php (added)
-
tags/2.0.1/includes (added)
-
tags/2.0.1/includes/admin.php (added)
-
tags/2.0.1/includes/api.php (added)
-
tags/2.0.1/includes/util.php (added)
-
tags/2.0.1/readme.txt (added)
-
trunk/child-themify.php (modified) (2 diffs)
-
trunk/includes/util.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
child-themify/trunk/child-themify.php
r1741211 r1812024 3 3 * Plugin Name: Child Themify 4 4 * Description: Create child themes at the click of a button 5 * Version: 2.0. 05 * Version: 2.0.1 6 6 * Plugin URI: https://github.com/johnpbloch/child-themify 7 7 * Author: John P. Bloch … … 11 11 */ 12 12 13 define( ' CTF_PATH', __FILE__ );14 define( ' CTF_URL', plugin_dir_url(CTF_PATH ) );15 define( ' CTF_VERSION', '2.0.0' );13 define( 'JPB_CTF_PATH', __FILE__ ); 14 define( 'JPB_CTF_URL', plugin_dir_url( JPB_CTF_PATH ) ); 15 define( 'JPB_CTF_VERSION', '2.0.1' ); 16 16 17 17 function ctf_plugins_loaded() { 18 $inc = plugin_dir_path( CTF_PATH ) . '/includes/';18 $inc = plugin_dir_path( JPB_CTF_PATH ) . '/includes/'; 19 19 require_once $inc . 'util.php'; 20 20 require_once $inc . 'api.php'; -
child-themify/trunk/includes/util.php
r1727838 r1812024 12 12 return esc_url_raw( sprintf( 13 13 '%sassets/%s/%s', 14 CTF_URL,14 JPB_CTF_URL, 15 15 ( 'js' === $type ) ? 'js' : 'css', 16 16 $file … … 48 48 */ 49 49 function child_themify_asset_version() { 50 return '{{VERSION}}' === CTF_VERSION ? time() :CTF_VERSION;50 return '{{VERSION}}' === JPB_CTF_VERSION ? time() : JPB_CTF_VERSION; 51 51 } 52 52 -
child-themify/trunk/readme.txt
r1741211 r1812024 4 4 Requires at least: 4.7.0 5 5 Tested up to: 4.8.9 6 Stable tag: 2.0. 06 Stable tag: 2.0.1 7 7 License: GPL-2.0+ 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.