Changeset 1287294
- Timestamp:
- 11/16/2015 08:08:55 PM (10 years ago)
- Location:
- bulk-page-creator
- Files:
-
- 6 added
- 2 edited
-
tags/1.0.9 (added)
-
tags/1.0.9/bulk-page-creator.php (added)
-
tags/1.0.9/my-script.js (added)
-
tags/1.0.9/my-style.css (added)
-
tags/1.0.9/readme.txt (added)
-
tags/1.0.9/screenshot-1.jpg (added)
-
trunk/bulk-page-creator.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bulk-page-creator/trunk/bulk-page-creator.php
r1050490 r1287294 4 4 Plugin URI: http://solid-code.co.uk/2011/05/bulk-page-creator/ 5 5 Description: Allows you to create multiple pages in a batch/bulk manner saving time when initially setting up your WordPress site. 6 Version: 1.0. 86 Version: 1.0.9 7 7 Author: Dagan Lev 8 8 Author URI: http://solid-code.co.uk … … 23 23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 24 24 */ 25 if ( ! defined( 'ABSPATH' ) ) { 26 exit('no access'); // disable direct access 27 } 28 25 29 if (!class_exists("sc_bulk_page_creator")) { 26 30 class sc_bulk_page_creator{ … … 49 53 50 54 function sc_bpc_scripts(){ 51 wp_register_script('sc-bpc-js', WP_PLUGIN_URL.'/bulk-page-creator/my-script.js', array('jquery'));55 wp_register_script('sc-bpc-js', plugins_url() .'/bulk-page-creator/my-script.js', array('jquery')); 52 56 wp_enqueue_script('sc-bpc-js'); 53 57 } 54 58 55 59 function sc_bpc_styles(){ 56 wp_register_style('sc-bpc-css', WP_PLUGIN_URL.'/bulk-page-creator/my-style.css');60 wp_register_style('sc-bpc-css',plugins_url().'/bulk-page-creator/my-style.css'); 57 61 wp_enqueue_style('sc-bpc-css'); 58 62 } -
bulk-page-creator/trunk/readme.txt
r1050490 r1287294 47 47 Added template support - if templates exist in the theme will create a template dropdown to choose from when adding pages 48 48 49 = 1.0.9 = 50 Added support for HTTPS logins 51 49 52 == Screenshots == 50 53 … … 53 56 == Upgrade Notice == 54 57 55 Added template support - if templates exist in the theme will create a template dropdown to choose from when adding pages58 Added support for HTTPS logins
Note: See TracChangeset
for help on using the changeset viewer.