Version Description
Added support for HTTPS logins
=
Download this release
Release Info
Developer | DaganLev |
Plugin | Bulk Page Creator |
Version | 1.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.0.8 to 1.0.9
- bulk-page-creator.php +7 -3
- readme.txt +4 -1
bulk-page-creator.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Bulk Page Creator
|
4 |
Plugin URI: http://solid-code.co.uk/2011/05/bulk-page-creator/
|
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.
|
7 |
Author: Dagan Lev
|
8 |
Author URI: http://solid-code.co.uk
|
9 |
|
@@ -22,6 +22,10 @@ You should have received a copy of the GNU General Public License
|
|
22 |
along with this program; if not, write to the Free Software
|
23 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
24 |
*/
|
|
|
|
|
|
|
|
|
25 |
if (!class_exists("sc_bulk_page_creator")) {
|
26 |
class sc_bulk_page_creator{
|
27 |
//the constructor that initializes the class
|
@@ -48,12 +52,12 @@ if (!class_exists("sc_bulk_page_creator")) {
|
|
48 |
}
|
49 |
|
50 |
function sc_bpc_scripts(){
|
51 |
-
wp_register_script('sc-bpc-js',
|
52 |
wp_enqueue_script('sc-bpc-js');
|
53 |
}
|
54 |
|
55 |
function sc_bpc_styles(){
|
56 |
-
wp_register_style('sc-bpc-css',
|
57 |
wp_enqueue_style('sc-bpc-css');
|
58 |
}
|
59 |
|
3 |
Plugin Name: Bulk Page Creator
|
4 |
Plugin URI: http://solid-code.co.uk/2011/05/bulk-page-creator/
|
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.9
|
7 |
Author: Dagan Lev
|
8 |
Author URI: http://solid-code.co.uk
|
9 |
|
22 |
along with this program; if not, write to the Free Software
|
23 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
24 |
*/
|
25 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
26 |
+
exit('no access'); // disable direct access
|
27 |
+
}
|
28 |
+
|
29 |
if (!class_exists("sc_bulk_page_creator")) {
|
30 |
class sc_bulk_page_creator{
|
31 |
//the constructor that initializes the class
|
52 |
}
|
53 |
|
54 |
function sc_bpc_scripts(){
|
55 |
+
wp_register_script('sc-bpc-js', plugins_url() .'/bulk-page-creator/my-script.js', array('jquery'));
|
56 |
wp_enqueue_script('sc-bpc-js');
|
57 |
}
|
58 |
|
59 |
function sc_bpc_styles(){
|
60 |
+
wp_register_style('sc-bpc-css',plugins_url().'/bulk-page-creator/my-style.css');
|
61 |
wp_enqueue_style('sc-bpc-css');
|
62 |
}
|
63 |
|
readme.txt
CHANGED
@@ -46,10 +46,13 @@ Added script to add pages in the page section when accedently submitting form
|
|
46 |
= 1.0.8 =
|
47 |
Added template support - if templates exist in the theme will create a template dropdown to choose from when adding pages
|
48 |
|
|
|
|
|
|
|
49 |
== Screenshots ==
|
50 |
|
51 |
1. View of bulk page creator screen
|
52 |
|
53 |
== Upgrade Notice ==
|
54 |
|
55 |
-
Added
|
46 |
= 1.0.8 =
|
47 |
Added template support - if templates exist in the theme will create a template dropdown to choose from when adding pages
|
48 |
|
49 |
+
= 1.0.9 =
|
50 |
+
Added support for HTTPS logins
|
51 |
+
|
52 |
== Screenshots ==
|
53 |
|
54 |
1. View of bulk page creator screen
|
55 |
|
56 |
== Upgrade Notice ==
|
57 |
|
58 |
+
Added support for HTTPS logins
|