Version Description
Maintenance Version Release - Quick Fix
=
Download this release
Release Info
Developer | DaganLev |
Plugin | Bulk Page Creator |
Version | 1.1.3 |
Comparing to | |
See all releases |
Code changes from version 1.1.2 to 1.1.3
- bulk-page-creator.php +3 -3
- readme.txt +3 -0
bulk-page-creator.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Bulk Page Creator
|
4 |
Plugin URI: https://solid-code.co.uk/
|
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.1.
|
7 |
Author: Dagan Lev
|
8 |
Author URI: https://solid-code.co.uk
|
9 |
|
@@ -50,12 +50,12 @@ if (!class_exists("sc_bulk_page_creator")) {
|
|
50 |
}
|
51 |
|
52 |
function sc_bpc_scripts(){
|
53 |
-
wp_register_script('sc-bpc-js', plugins_url(
|
54 |
wp_enqueue_script('sc-bpc-js');
|
55 |
}
|
56 |
|
57 |
function sc_bpc_styles(){
|
58 |
-
wp_register_style('sc-bpc-css',plugins_url(
|
59 |
wp_enqueue_style('sc-bpc-css');
|
60 |
}
|
61 |
|
3 |
Plugin Name: Bulk Page Creator
|
4 |
Plugin URI: https://solid-code.co.uk/
|
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.1.3
|
7 |
Author: Dagan Lev
|
8 |
Author URI: https://solid-code.co.uk
|
9 |
|
50 |
}
|
51 |
|
52 |
function sc_bpc_scripts(){
|
53 |
+
wp_register_script('sc-bpc-js', plugins_url('my-script.js', __FILE__), array('jquery'));
|
54 |
wp_enqueue_script('sc-bpc-js');
|
55 |
}
|
56 |
|
57 |
function sc_bpc_styles(){
|
58 |
+
wp_register_style('sc-bpc-css',plugins_url('my-style.css', __FILE__));
|
59 |
wp_enqueue_style('sc-bpc-css');
|
60 |
}
|
61 |
|
readme.txt
CHANGED
@@ -58,6 +58,9 @@ Maintenance Version Release
|
|
58 |
= 1.1.2 =
|
59 |
Maintenance Version Release
|
60 |
|
|
|
|
|
|
|
61 |
== Screenshots ==
|
62 |
|
63 |
1. View of bulk page creator screen
|
58 |
= 1.1.2 =
|
59 |
Maintenance Version Release
|
60 |
|
61 |
+
= 1.1.3 =
|
62 |
+
Maintenance Version Release - Quick Fix
|
63 |
+
|
64 |
== Screenshots ==
|
65 |
|
66 |
1. View of bulk page creator screen
|