@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly. |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public static function init() { |
31 | 31 | // Add theme support and preset the theme selectors. |
32 | - add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) ); |
|
32 | + add_action('after_setup_theme', array(__CLASS__, 'add_theme_support')); |
|
33 | 33 | } // END init() |
34 | 34 | |
35 | 35 | /** |
@@ -40,14 +40,14 @@ discard block |
||
40 | 40 | * @static |
41 | 41 | */ |
42 | 42 | public static function add_theme_support() { |
43 | - add_theme_support( 'auto-load-next-post', array( |
|
43 | + add_theme_support('auto-load-next-post', array( |
|
44 | 44 | 'content_container' => 'main.site-main', |
45 | 45 | 'title_selector' => 'h1.entry-title', |
46 | 46 | 'navigation_container' => 'nav.post-navigation', |
47 | 47 | 'comments_container' => 'section#comments', |
48 | 48 | 'load_js_in_footer' => 'no', |
49 | 49 | 'lock_js_in_footer' => 'no', |
50 | - ) ); |
|
50 | + )); |
|
51 | 51 | } // END add_theme_support() |
52 | 52 | |
53 | 53 | } // END class |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly. |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public static function init() { |
31 | 31 | // Add theme support and preset the theme selectors. |
32 | - add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) ); |
|
32 | + add_action('after_setup_theme', array(__CLASS__, 'add_theme_support')); |
|
33 | 33 | } // END init() |
34 | 34 | |
35 | 35 | /** |
@@ -40,14 +40,14 @@ discard block |
||
40 | 40 | * @static |
41 | 41 | */ |
42 | 42 | public static function add_theme_support() { |
43 | - add_theme_support( 'auto-load-next-post', array( |
|
43 | + add_theme_support('auto-load-next-post', array( |
|
44 | 44 | 'content_container' => 'main.site-main', |
45 | 45 | 'title_selector' => 'h1.entry-title', |
46 | 46 | 'navigation_container' => 'nav.post-navigation', |
47 | 47 | 'comments_container' => 'section#comments', |
48 | 48 | 'load_js_in_footer' => 'no', |
49 | 49 | 'lock_js_in_footer' => 'no', |
50 | - ) ); |
|
50 | + )); |
|
51 | 51 | } // END add_theme_support() |
52 | 52 | |
53 | 53 | } // END class |
@@ -11,11 +11,11 @@ discard block |
||
11 | 11 | */ |
12 | 12 | |
13 | 13 | // Exit if accessed directly. |
14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
14 | +if ( ! defined('ABSPATH')) { |
|
15 | 15 | exit; |
16 | 16 | } |
17 | 17 | |
18 | -if ( ! class_exists( 'Auto_Load_Next_Post_Settings_Misc_Tab' ) ) { |
|
18 | +if ( ! class_exists('Auto_Load_Next_Post_Settings_Misc_Tab')) { |
|
19 | 19 | |
20 | 20 | class Auto_Load_Next_Post_Settings_Misc_Tab extends Auto_Load_Next_Post_Settings_Page { |
21 | 21 | |
@@ -29,12 +29,12 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function __construct() { |
31 | 31 | $this->id = 'misc'; |
32 | - $this->label = esc_html__( 'Misc', 'auto-load-next-post' ); |
|
32 | + $this->label = esc_html__('Misc', 'auto-load-next-post'); |
|
33 | 33 | |
34 | 34 | parent::__construct(); |
35 | 35 | |
36 | - add_filter( 'auto_load_next_post_' . $this->id . '_settings', array( __CLASS__, 'lock_js_in_footer' ), 0, 1 ); |
|
37 | - add_action( 'auto_load_next_post_sections_' . $this->id, array( __CLASS__, 'no_comment_selector_set' ), 10 ); |
|
36 | + add_filter('auto_load_next_post_'.$this->id.'_settings', array(__CLASS__, 'lock_js_in_footer'), 0, 1); |
|
37 | + add_action('auto_load_next_post_sections_'.$this->id, array(__CLASS__, 'no_comment_selector_set'), 10); |
|
38 | 38 | } // END __construct() |
39 | 39 | |
40 | 40 | /** |
@@ -45,11 +45,11 @@ discard block |
||
45 | 45 | * @since 1.5.0 |
46 | 46 | */ |
47 | 47 | public static function no_comment_selector_set() { |
48 | - $comments_container = get_option( 'auto_load_next_post_comments_container' ); |
|
49 | - $remove_comments = get_option( 'auto_load_next_post_remove_comments' ); |
|
48 | + $comments_container = get_option('auto_load_next_post_comments_container'); |
|
49 | + $remove_comments = get_option('auto_load_next_post_remove_comments'); |
|
50 | 50 | |
51 | - if ( empty( $comments_container ) && ! empty( $remove_comments ) ) { |
|
52 | - include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-no-comment-selector.php' ); |
|
51 | + if (empty($comments_container) && ! empty($remove_comments)) { |
|
52 | + include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-no-comment-selector.php'); |
|
53 | 53 | } |
54 | 54 | } // END no_comment_selector_set() |
55 | 55 | |
@@ -65,19 +65,19 @@ discard block |
||
65 | 65 | * @param array $settings |
66 | 66 | * @return array $settings |
67 | 67 | */ |
68 | - public static function lock_js_in_footer( $settings ) { |
|
69 | - $js_locked_in_footer = get_option( 'auto_load_next_post_lock_js_in_footer' ); |
|
68 | + public static function lock_js_in_footer($settings) { |
|
69 | + $js_locked_in_footer = get_option('auto_load_next_post_lock_js_in_footer'); |
|
70 | 70 | |
71 | - if ( !empty( $js_locked_in_footer ) && $js_locked_in_footer == 'yes' ) { |
|
71 | + if ( ! empty($js_locked_in_footer) && $js_locked_in_footer == 'yes') { |
|
72 | 72 | // Setting key to look for. |
73 | 73 | $key = 'load_js_in_footer'; |
74 | 74 | |
75 | 75 | // Find the setting. |
76 | - $find_setting = array_search( $key, $settings ); |
|
76 | + $find_setting = array_search($key, $settings); |
|
77 | 77 | |
78 | 78 | // Does the setting exist? |
79 | - if ( is_bool( $find_setting ) === true ) { |
|
80 | - unset( $settings[$key] ); |
|
79 | + if (is_bool($find_setting) === true) { |
|
80 | + unset($settings[$key]); |
|
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
@@ -98,45 +98,45 @@ discard block |
||
98 | 98 | 'title' => array( |
99 | 99 | 'title' => $this->label, |
100 | 100 | 'type' => 'title', |
101 | - 'desc' => sprintf( esc_html__( 'Here you set if you want to track pageviews, remove comments and load %s javascript in the footer.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ), |
|
101 | + 'desc' => sprintf(esc_html__('Here you set if you want to track pageviews, remove comments and load %s javascript in the footer.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')), |
|
102 | 102 | 'id' => 'misc_options' |
103 | 103 | ), |
104 | 104 | |
105 | 105 | 'remove_comments' => array( |
106 | - 'title' => esc_html__( 'Remove Comments', 'auto-load-next-post' ), |
|
107 | - 'desc' => esc_html__( 'Enable to remove comments when each post loads including the initial post.', 'auto-load-next-post' ), |
|
106 | + 'title' => esc_html__('Remove Comments', 'auto-load-next-post'), |
|
107 | + 'desc' => esc_html__('Enable to remove comments when each post loads including the initial post.', 'auto-load-next-post'), |
|
108 | 108 | 'id' => 'auto_load_next_post_remove_comments', |
109 | 109 | 'default' => 'yes', |
110 | 110 | 'type' => 'checkbox' |
111 | 111 | ), |
112 | 112 | |
113 | 113 | 'google_analytics' => array( |
114 | - 'title' => esc_html__( 'Update Google Analytics', 'auto-load-next-post' ), |
|
115 | - 'desc' => esc_html__( 'Enable to track each post the visitor is reading. This will count as a pageview. You must already have Google Analytics setup.', 'auto-load-next-post' ), |
|
114 | + 'title' => esc_html__('Update Google Analytics', 'auto-load-next-post'), |
|
115 | + 'desc' => esc_html__('Enable to track each post the visitor is reading. This will count as a pageview. You must already have Google Analytics setup.', 'auto-load-next-post'), |
|
116 | 116 | 'id' => 'auto_load_next_post_google_analytics', |
117 | 117 | 'default' => 'no', |
118 | 118 | 'type' => 'checkbox' |
119 | 119 | ), |
120 | 120 | |
121 | 121 | 'load_js_in_footer' => array( |
122 | - 'title' => esc_html__( 'JavaScript in Footer?', 'auto-load-next-post' ), |
|
123 | - 'desc' => esc_html__( 'Enable to load Auto Load Next Post in the footer instead of the header. Can be useful to optimize your site or if the current theme requires it.', 'auto-load-next-post' ), |
|
122 | + 'title' => esc_html__('JavaScript in Footer?', 'auto-load-next-post'), |
|
123 | + 'desc' => esc_html__('Enable to load Auto Load Next Post in the footer instead of the header. Can be useful to optimize your site or if the current theme requires it.', 'auto-load-next-post'), |
|
124 | 124 | 'id' => 'auto_load_next_post_load_js_in_footer', |
125 | 125 | 'default' => 'no', |
126 | 126 | 'type' => 'checkbox' |
127 | 127 | ), |
128 | 128 | |
129 | 129 | 'reset_data' => array( |
130 | - 'title' => esc_html__( 'Reset all data?', 'auto-load-next-post' ), |
|
131 | - 'desc' => esc_html__( 'Press the reset button to clear all settings for this plugin and re-install the default settings.', 'auto-load-next-post' ), |
|
130 | + 'title' => esc_html__('Reset all data?', 'auto-load-next-post'), |
|
131 | + 'desc' => esc_html__('Press the reset button to clear all settings for this plugin and re-install the default settings.', 'auto-load-next-post'), |
|
132 | 132 | 'id' => 'auto_load_next_post_reset_data', |
133 | 133 | 'default' => 'no', |
134 | 134 | 'type' => 'reset_data' |
135 | 135 | ), |
136 | 136 | |
137 | 137 | 'uninstall' => array( |
138 | - 'title' => esc_html__( 'Remove all data on uninstall?', 'auto-load-next-post' ), |
|
139 | - 'desc' => esc_html__( 'If enabled, all settings for this plugin will all be deleted when uninstalling via Plugins > Delete.', 'auto-load-next-post' ), |
|
138 | + 'title' => esc_html__('Remove all data on uninstall?', 'auto-load-next-post'), |
|
139 | + 'desc' => esc_html__('If enabled, all settings for this plugin will all be deleted when uninstalling via Plugins > Delete.', 'auto-load-next-post'), |
|
140 | 140 | 'id' => 'auto_load_next_post_uninstall_data', |
141 | 141 | 'default' => 'no', |
142 | 142 | 'type' => 'checkbox' |
@@ -156,15 +156,15 @@ discard block |
||
156 | 156 | * @since 1.5.0 |
157 | 157 | * @param mixed $settings |
158 | 158 | */ |
159 | - public function customize_button( $settings ) { |
|
159 | + public function customize_button($settings) { |
|
160 | 160 | ?> |
161 | 161 | <tr valign="top"> |
162 | - <th scope="row" class="titledesc"><?php echo $settings['title'];?></th> |
|
163 | - <td class="forminp forminp-<?php echo sanitize_title( $settings['type'] ) ?>"> |
|
164 | - <a href="<?php echo $settings['link']; ?>" class="button-secondary <?php echo esc_attr( $settings['class'] ); ?>"> |
|
162 | + <th scope="row" class="titledesc"><?php echo $settings['title']; ?></th> |
|
163 | + <td class="forminp forminp-<?php echo sanitize_title($settings['type']) ?>"> |
|
164 | + <a href="<?php echo $settings['link']; ?>" class="button-secondary <?php echo esc_attr($settings['class']); ?>"> |
|
165 | 165 | <?php echo $settings['button_text']; ?> |
166 | 166 | </a> |
167 | - <span class="description"><?php echo $settings['desc'];?></span> |
|
167 | + <span class="description"><?php echo $settings['desc']; ?></span> |
|
168 | 168 | </td> |
169 | 169 | </tr> |
170 | 170 | <?php |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | public function output() { |
182 | 182 | $settings = $this->get_settings(); |
183 | 183 | |
184 | - Auto_Load_Next_Post_Admin_Settings::output_fields( $settings ); |
|
184 | + Auto_Load_Next_Post_Admin_Settings::output_fields($settings); |
|
185 | 185 | } // END output() |
186 | 186 | |
187 | 187 | /** |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | public function save() { |
194 | 194 | $settings = $this->get_settings(); |
195 | 195 | |
196 | - Auto_Load_Next_Post_Admin_Settings::save_fields( $settings ); |
|
196 | + Auto_Load_Next_Post_Admin_Settings::save_fields($settings); |
|
197 | 197 | } // END save() |
198 | 198 | |
199 | 199 | } // END class |
@@ -11,11 +11,11 @@ discard block |
||
11 | 11 | */ |
12 | 12 | |
13 | 13 | // Exit if accessed directly. |
14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
14 | +if ( ! defined('ABSPATH')) { |
|
15 | 15 | exit; |
16 | 16 | } |
17 | 17 | |
18 | -if ( ! class_exists( 'Auto_Load_Next_Post_Install' ) ) { |
|
18 | +if ( ! class_exists('Auto_Load_Next_Post_Install')) { |
|
19 | 19 | |
20 | 20 | class Auto_Load_Next_Post_Install { |
21 | 21 | |
@@ -36,11 +36,11 @@ discard block |
||
36 | 36 | * @access public |
37 | 37 | */ |
38 | 38 | public function __construct() { |
39 | - add_action( 'init', array( __CLASS__, 'add_rewrite_endpoint' ), 0 ); |
|
40 | - add_action( 'init', array( __CLASS__, 'check_version' ), 5 ); |
|
39 | + add_action('init', array(__CLASS__, 'add_rewrite_endpoint'), 0); |
|
40 | + add_action('init', array(__CLASS__, 'check_version'), 5); |
|
41 | 41 | |
42 | 42 | // Get plugin version. |
43 | - self::$current_version = get_option( 'auto_load_next_post_version' ); |
|
43 | + self::$current_version = get_option('auto_load_next_post_version'); |
|
44 | 44 | } // END __construct() |
45 | 45 | |
46 | 46 | /** |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | * @since 1.4.10 |
54 | 54 | */ |
55 | 55 | public static function check_version() { |
56 | - if ( ! defined( 'IFRAME_REQUEST' ) && version_compare( self::$current_version, AUTO_LOAD_NEXT_POST_VERSION, '<' ) ) { |
|
56 | + if ( ! defined('IFRAME_REQUEST') && version_compare(self::$current_version, AUTO_LOAD_NEXT_POST_VERSION, '<')) { |
|
57 | 57 | self::install(); |
58 | - do_action( 'auto_load_next_post_updated' ); |
|
58 | + do_action('auto_load_next_post_updated'); |
|
59 | 59 | } |
60 | 60 | } // END check_version() |
61 | 61 | |
@@ -68,19 +68,19 @@ discard block |
||
68 | 68 | * @version 1.5.0 |
69 | 69 | */ |
70 | 70 | public static function install() { |
71 | - if ( ! is_blog_installed() ) { |
|
71 | + if ( ! is_blog_installed()) { |
|
72 | 72 | return; |
73 | 73 | } |
74 | 74 | |
75 | 75 | // Check if we are not already running this routine. |
76 | - if ( 'yes' === get_transient( 'alnp_installing' ) ) { |
|
76 | + if ('yes' === get_transient('alnp_installing')) { |
|
77 | 77 | return; |
78 | 78 | } |
79 | 79 | |
80 | 80 | // If we made it till here nothing is running yet, lets set the transient now for five minutes. |
81 | - set_transient( 'alnp_installing', 'yes', MINUTE_IN_SECONDS * 5 ); |
|
82 | - if ( ! defined( 'AUTO_LOAD_NEXT_POST_INSTALLING' ) ) { |
|
83 | - define( 'AUTO_LOAD_NEXT_POST_INSTALLING', true ); |
|
81 | + set_transient('alnp_installing', 'yes', MINUTE_IN_SECONDS * 5); |
|
82 | + if ( ! defined('AUTO_LOAD_NEXT_POST_INSTALLING')) { |
|
83 | + define('AUTO_LOAD_NEXT_POST_INSTALLING', true); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | // Add default options. |
@@ -101,9 +101,9 @@ discard block |
||
101 | 101 | // Refresh rewrite rules. |
102 | 102 | self::flush_rewrite_rules(); |
103 | 103 | |
104 | - delete_transient( 'alnp_installing' ); |
|
104 | + delete_transient('alnp_installing'); |
|
105 | 105 | |
106 | - do_action( 'alnp_installed' ); |
|
106 | + do_action('alnp_installed'); |
|
107 | 107 | } // END install() |
108 | 108 | |
109 | 109 | /** |
@@ -115,16 +115,16 @@ discard block |
||
115 | 115 | * @since 1.5.0 |
116 | 116 | */ |
117 | 117 | private static function set_theme_selectors() { |
118 | - if ( is_alnp_supported() ) { |
|
119 | - $content_container = alnp_get_theme_support( 'content_container' ); |
|
120 | - $title_selector = alnp_get_theme_support( 'title_selector' ); |
|
121 | - $navigation_container = alnp_get_theme_support( 'navigation_container' ); |
|
122 | - $comments_container = alnp_get_theme_support( 'comments_container' ); |
|
123 | - |
|
124 | - if ( ! empty( $content_container ) ) update_option( 'auto_load_next_post_content_container', $content_container ); |
|
125 | - if ( ! empty( $title_selector ) ) update_option( 'auto_load_next_post_title_selector', $title_selector ); |
|
126 | - if ( ! empty( $navigation_container ) ) update_option( 'auto_load_next_post_navigation_container', $navigation_container ); |
|
127 | - if ( ! empty( $comments_container ) ) update_option( 'auto_load_next_post_comments_container', $comments_container ); |
|
118 | + if (is_alnp_supported()) { |
|
119 | + $content_container = alnp_get_theme_support('content_container'); |
|
120 | + $title_selector = alnp_get_theme_support('title_selector'); |
|
121 | + $navigation_container = alnp_get_theme_support('navigation_container'); |
|
122 | + $comments_container = alnp_get_theme_support('comments_container'); |
|
123 | + |
|
124 | + if ( ! empty($content_container)) update_option('auto_load_next_post_content_container', $content_container); |
|
125 | + if ( ! empty($title_selector)) update_option('auto_load_next_post_title_selector', $title_selector); |
|
126 | + if ( ! empty($navigation_container)) update_option('auto_load_next_post_navigation_container', $navigation_container); |
|
127 | + if ( ! empty($comments_container)) update_option('auto_load_next_post_comments_container', $comments_container); |
|
128 | 128 | } |
129 | 129 | } // END set_theme_selectors() |
130 | 130 | |
@@ -139,12 +139,12 @@ discard block |
||
139 | 139 | * @version 1.5.3 |
140 | 140 | */ |
141 | 141 | private static function set_js_in_footer() { |
142 | - if ( is_alnp_supported() ) { |
|
143 | - $load_js_in_footer = alnp_get_theme_support( 'load_js_in_footer' ); |
|
144 | - $lock_js_in_footer = alnp_get_theme_support( 'lock_js_in_footer' ); |
|
142 | + if (is_alnp_supported()) { |
|
143 | + $load_js_in_footer = alnp_get_theme_support('load_js_in_footer'); |
|
144 | + $lock_js_in_footer = alnp_get_theme_support('lock_js_in_footer'); |
|
145 | 145 | |
146 | - if ( ! empty( $load_js_in_footer ) && $load_js_in_footer == 'yes' ) update_option( 'auto_load_next_post_load_js_in_footer', $load_js_in_footer ); |
|
147 | - if ( ! empty( $lock_js_in_footer ) && $lock_js_in_footer == 'yes' ) update_option( 'auto_load_next_post_lock_js_in_footer', $lock_js_in_footer ); |
|
146 | + if ( ! empty($load_js_in_footer) && $load_js_in_footer == 'yes') update_option('auto_load_next_post_load_js_in_footer', $load_js_in_footer); |
|
147 | + if ( ! empty($lock_js_in_footer) && $lock_js_in_footer == 'yes') update_option('auto_load_next_post_lock_js_in_footer', $lock_js_in_footer); |
|
148 | 148 | } |
149 | 149 | } // END set_js_in_footer() |
150 | 150 | |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | * @static |
156 | 156 | */ |
157 | 157 | private static function update_version() { |
158 | - update_option( 'auto_load_next_post_version', AUTO_LOAD_NEXT_POST_VERSION ); |
|
158 | + update_option('auto_load_next_post_version', AUTO_LOAD_NEXT_POST_VERSION); |
|
159 | 159 | } // END update_version() |
160 | 160 | |
161 | 161 | /** |
@@ -167,13 +167,13 @@ discard block |
||
167 | 167 | * @version 1.5.0 |
168 | 168 | */ |
169 | 169 | public static function set_install_date() { |
170 | - $install_date = get_site_option( 'auto_load_next_post_install_date' ); |
|
170 | + $install_date = get_site_option('auto_load_next_post_install_date'); |
|
171 | 171 | |
172 | 172 | // If ALNP was installed before but the install date was not converted to time then convert it. |
173 | - if ( ! empty( $install_date ) && !intval( $install_date ) ) { |
|
174 | - update_site_option( 'auto_load_next_post_install_date', strtotime( $install_date ) ); |
|
173 | + if ( ! empty($install_date) && ! intval($install_date)) { |
|
174 | + update_site_option('auto_load_next_post_install_date', strtotime($install_date)); |
|
175 | 175 | } else { |
176 | - add_site_option( 'auto_load_next_post_install_date', time() ); |
|
176 | + add_site_option('auto_load_next_post_install_date', time()); |
|
177 | 177 | } |
178 | 178 | } // END set_install_date() |
179 | 179 | |
@@ -189,15 +189,15 @@ discard block |
||
189 | 189 | */ |
190 | 190 | public static function create_options() { |
191 | 191 | // Include settings so that we can run through defaults |
192 | - include_once( dirname( __FILE__ ) . '/admin/class-alnp-admin-settings.php' ); |
|
192 | + include_once(dirname(__FILE__).'/admin/class-alnp-admin-settings.php'); |
|
193 | 193 | |
194 | 194 | $settings = Auto_Load_Next_Post_Admin_Settings::get_settings_pages(); |
195 | 195 | |
196 | - foreach ( $settings as $section ) { |
|
197 | - foreach ( $section->get_settings() as $value ) { |
|
198 | - if ( isset( $value['default'] ) && isset( $value['id'] ) ) { |
|
199 | - $autoload = isset( $value['autoload'] ) ? (bool) $value['autoload'] : true; |
|
200 | - add_option( $value['id'], $value['default'], '', ( $autoload ? 'yes' : 'no' ) ); |
|
196 | + foreach ($settings as $section) { |
|
197 | + foreach ($section->get_settings() as $value) { |
|
198 | + if (isset($value['default']) && isset($value['id'])) { |
|
199 | + $autoload = isset($value['autoload']) ? (bool) $value['autoload'] : true; |
|
200 | + add_option($value['id'], $value['default'], '', ($autoload ? 'yes' : 'no')); |
|
201 | 201 | } |
202 | 202 | } |
203 | 203 | } |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | * @version 1.5.0 |
213 | 213 | */ |
214 | 214 | public static function add_rewrite_endpoint() { |
215 | - add_rewrite_endpoint( 'alnp', EP_PERMALINK | EP_PAGES | EP_ATTACHMENT ); |
|
215 | + add_rewrite_endpoint('alnp', EP_PERMALINK | EP_PAGES | EP_ATTACHMENT); |
|
216 | 216 | } // END add_rewrite_endpoint() |
217 | 217 | |
218 | 218 | /** |
@@ -121,10 +121,18 @@ discard block |
||
121 | 121 | $navigation_container = alnp_get_theme_support( 'navigation_container' ); |
122 | 122 | $comments_container = alnp_get_theme_support( 'comments_container' ); |
123 | 123 | |
124 | - if ( ! empty( $content_container ) ) update_option( 'auto_load_next_post_content_container', $content_container ); |
|
125 | - if ( ! empty( $title_selector ) ) update_option( 'auto_load_next_post_title_selector', $title_selector ); |
|
126 | - if ( ! empty( $navigation_container ) ) update_option( 'auto_load_next_post_navigation_container', $navigation_container ); |
|
127 | - if ( ! empty( $comments_container ) ) update_option( 'auto_load_next_post_comments_container', $comments_container ); |
|
124 | + if ( ! empty( $content_container ) ) { |
|
125 | + update_option( 'auto_load_next_post_content_container', $content_container ); |
|
126 | + } |
|
127 | + if ( ! empty( $title_selector ) ) { |
|
128 | + update_option( 'auto_load_next_post_title_selector', $title_selector ); |
|
129 | + } |
|
130 | + if ( ! empty( $navigation_container ) ) { |
|
131 | + update_option( 'auto_load_next_post_navigation_container', $navigation_container ); |
|
132 | + } |
|
133 | + if ( ! empty( $comments_container ) ) { |
|
134 | + update_option( 'auto_load_next_post_comments_container', $comments_container ); |
|
135 | + } |
|
128 | 136 | } |
129 | 137 | } // END set_theme_selectors() |
130 | 138 | |
@@ -143,8 +151,12 @@ discard block |
||
143 | 151 | $load_js_in_footer = alnp_get_theme_support( 'load_js_in_footer' ); |
144 | 152 | $lock_js_in_footer = alnp_get_theme_support( 'lock_js_in_footer' ); |
145 | 153 | |
146 | - if ( ! empty( $load_js_in_footer ) && $load_js_in_footer == 'yes' ) update_option( 'auto_load_next_post_load_js_in_footer', $load_js_in_footer ); |
|
147 | - if ( ! empty( $lock_js_in_footer ) && $lock_js_in_footer == 'yes' ) update_option( 'auto_load_next_post_lock_js_in_footer', $lock_js_in_footer ); |
|
154 | + if ( ! empty( $load_js_in_footer ) && $load_js_in_footer == 'yes' ) { |
|
155 | + update_option( 'auto_load_next_post_load_js_in_footer', $load_js_in_footer ); |
|
156 | + } |
|
157 | + if ( ! empty( $lock_js_in_footer ) && $lock_js_in_footer == 'yes' ) { |
|
158 | + update_option( 'auto_load_next_post_lock_js_in_footer', $lock_js_in_footer ); |
|
159 | + } |
|
148 | 160 | } |
149 | 161 | } // END set_js_in_footer() |
150 | 162 |
@@ -9,17 +9,17 @@ discard block |
||
9 | 9 | * @package Auto Load Next Post |
10 | 10 | * @license GPL-2.0+ |
11 | 11 | */ |
12 | -if ( ! defined( 'ABSPATH' ) || ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
|
12 | +if ( ! defined('ABSPATH') || ! defined('WP_UNINSTALL_PLUGIN')) { |
|
13 | 13 | exit(); // Exit if accessed directly. |
14 | 14 | } |
15 | 15 | |
16 | 16 | global $wpdb; |
17 | 17 | |
18 | 18 | // Make sure it is only a single site we are uninstalling from. |
19 | -if ( ! is_multisite() ) { |
|
20 | - $uninstall = get_option( 'auto_load_next_post_uninstall_data' ); |
|
19 | +if ( ! is_multisite()) { |
|
20 | + $uninstall = get_option('auto_load_next_post_uninstall_data'); |
|
21 | 21 | |
22 | - if ( ! empty( $uninstall ) ) { |
|
22 | + if ( ! empty($uninstall)) { |
|
23 | 23 | // Delete options |
24 | 24 | $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'auto_load_next_post_%'"); |
25 | 25 | |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | } |
30 | 30 | |
31 | 31 | // Delete Install Date |
32 | -delete_site_option( 'auto_load_next_post_install_date' ); |
|
32 | +delete_site_option('auto_load_next_post_install_date'); |
|
33 | 33 | |
34 | 34 | // Delete Uninstall Data - Just to double check it has been removed. |
35 | -delete_option( 'auto_load_next_post_uninstall_data' ); |
|
35 | +delete_option('auto_load_next_post_uninstall_data'); |
|
36 | 36 | |
37 | 37 | // Clear any cached data that has been removed. |
38 | 38 | wp_cache_flush(); |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | */ |
12 | 12 | |
13 | 13 | // Exit if accessed directly. |
14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
14 | +if ( ! defined('ABSPATH')) { |
|
15 | 15 | exit; |
16 | 16 | } |
17 | 17 | |
@@ -24,12 +24,12 @@ discard block |
||
24 | 24 | * @param string|array $var Data to sanitize. |
25 | 25 | * @return string|array * |
26 | 26 | */ |
27 | -if ( ! function_exists( 'auto_load_next_post_clean' ) ) { |
|
28 | - function auto_load_next_post_clean( $var ) { |
|
29 | - if ( is_array( $var ) ) { |
|
30 | - return array_map( 'auto_load_next_post_clean', $var ); |
|
27 | +if ( ! function_exists('auto_load_next_post_clean')) { |
|
28 | + function auto_load_next_post_clean($var) { |
|
29 | + if (is_array($var)) { |
|
30 | + return array_map('auto_load_next_post_clean', $var); |
|
31 | 31 | } else { |
32 | - return is_scalar( $var ) ? sanitize_text_field( $var ) : $var; |
|
32 | + return is_scalar($var) ? sanitize_text_field($var) : $var; |
|
33 | 33 | } |
34 | 34 | } // END auto_load_next_post_clean() |
35 | 35 | } |
@@ -44,60 +44,60 @@ discard block |
||
44 | 44 | * @param string $seconds Seconds in time. |
45 | 45 | * @return string |
46 | 46 | */ |
47 | -if ( ! function_exists( 'auto_load_next_post_seconds_to_words' ) ) { |
|
48 | - function auto_load_next_post_seconds_to_words( $seconds ) { |
|
47 | +if ( ! function_exists('auto_load_next_post_seconds_to_words')) { |
|
48 | + function auto_load_next_post_seconds_to_words($seconds) { |
|
49 | 49 | // Get the years. |
50 | - $years = ( intval( $seconds ) / YEAR_IN_SECONDS ) % 100; |
|
51 | - if ( $years > 1 ) { |
|
50 | + $years = (intval($seconds) / YEAR_IN_SECONDS) % 100; |
|
51 | + if ($years > 1) { |
|
52 | 52 | /* translators: Number of years */ |
53 | - return sprintf( __( '%s years', 'auto-load-next-post' ), $years ); |
|
54 | - } elseif ( $years > 0 ) { |
|
55 | - return __( 'a year', 'auto-load-next-post' ); |
|
53 | + return sprintf(__('%s years', 'auto-load-next-post'), $years); |
|
54 | + } elseif ($years > 0) { |
|
55 | + return __('a year', 'auto-load-next-post'); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | // Get the weeks. |
59 | - $weeks = ( intval( $seconds ) / WEEK_IN_SECONDS ) % 52; |
|
60 | - if ( $weeks > 1 ) { |
|
59 | + $weeks = (intval($seconds) / WEEK_IN_SECONDS) % 52; |
|
60 | + if ($weeks > 1) { |
|
61 | 61 | /* translators: Number of weeks */ |
62 | - return sprintf( __( '%s weeks', 'auto-load-next-post' ), $weeks ); |
|
63 | - } elseif ( $weeks > 0 ) { |
|
64 | - return __( 'a week', 'auto-load-next-post' ); |
|
62 | + return sprintf(__('%s weeks', 'auto-load-next-post'), $weeks); |
|
63 | + } elseif ($weeks > 0) { |
|
64 | + return __('a week', 'auto-load-next-post'); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | // Get the days. |
68 | - $days = ( intval( $seconds ) / DAY_IN_SECONDS ) % 7; |
|
69 | - if ( $days > 1 ) { |
|
68 | + $days = (intval($seconds) / DAY_IN_SECONDS) % 7; |
|
69 | + if ($days > 1) { |
|
70 | 70 | /* translators: Number of days */ |
71 | - return sprintf( __( '%s days', 'auto-load-next-post' ), $days ); |
|
72 | - } elseif ( $days > 0 ) { |
|
73 | - return __( 'a day', 'auto-load-next-post' ); |
|
71 | + return sprintf(__('%s days', 'auto-load-next-post'), $days); |
|
72 | + } elseif ($days > 0) { |
|
73 | + return __('a day', 'auto-load-next-post'); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | // Get the hours. |
77 | - $hours = ( intval( $seconds ) / HOUR_IN_SECONDS ) % 24; |
|
78 | - if ( $hours > 1 ) { |
|
77 | + $hours = (intval($seconds) / HOUR_IN_SECONDS) % 24; |
|
78 | + if ($hours > 1) { |
|
79 | 79 | /* translators: Number of hours */ |
80 | - return sprintf( __( '%s hours', 'auto-load-next-post' ), $hours ); |
|
81 | - } elseif ( $hours > 0 ) { |
|
82 | - return __( 'an hour', 'auto-load-next-post' ); |
|
80 | + return sprintf(__('%s hours', 'auto-load-next-post'), $hours); |
|
81 | + } elseif ($hours > 0) { |
|
82 | + return __('an hour', 'auto-load-next-post'); |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | // Get the minutes. |
86 | - $minutes = ( intval( $seconds ) / MINUTE_IN_SECONDS ) % 60; |
|
87 | - if ( $minutes > 1 ) { |
|
86 | + $minutes = (intval($seconds) / MINUTE_IN_SECONDS) % 60; |
|
87 | + if ($minutes > 1) { |
|
88 | 88 | /* translators: Number of minutes */ |
89 | - return sprintf( __( '%s minutes', 'auto-load-next-post' ), $minutes ); |
|
90 | - } elseif ( $minutes > 0 ) { |
|
91 | - return __( 'a minute', 'auto-load-next-post' ); |
|
89 | + return sprintf(__('%s minutes', 'auto-load-next-post'), $minutes); |
|
90 | + } elseif ($minutes > 0) { |
|
91 | + return __('a minute', 'auto-load-next-post'); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | // Get the seconds. |
95 | - $seconds = intval( $seconds ) % 60; |
|
96 | - if ( $seconds > 1 ) { |
|
95 | + $seconds = intval($seconds) % 60; |
|
96 | + if ($seconds > 1) { |
|
97 | 97 | /* translators: Number of seconds */ |
98 | - return sprintf( __( '%s seconds', 'auto-load-next-post' ), $seconds ); |
|
99 | - } elseif ( $seconds > 0 ) { |
|
100 | - return __( 'a second', 'auto-load-next-post' ); |
|
98 | + return sprintf(__('%s seconds', 'auto-load-next-post'), $seconds); |
|
99 | + } elseif ($seconds > 0) { |
|
100 | + return __('a second', 'auto-load-next-post'); |
|
101 | 101 | } |
102 | 102 | } // END auto_load_next_post_seconds_to_words() |
103 | 103 | } |
@@ -165,8 +165,12 @@ discard block |
||
165 | 165 | public function alnp_remove_widgets_panel( $components ) { |
166 | 166 | if ( $this->alnp_is_customizer() ) { |
167 | 167 | foreach( $components as $key => $component ) { |
168 | - if ( $component == 'widgets' ) unset( $components[ 'widgets' ] ); |
|
169 | - if ( $component == 'nav_menus' ) unset( $components[ 'nav_menus' ] ); |
|
168 | + if ( $component == 'widgets' ) { |
|
169 | + unset( $components[ 'widgets' ] ); |
|
170 | + } |
|
171 | + if ( $component == 'nav_menus' ) { |
|
172 | + unset( $components[ 'nav_menus' ] ); |
|
173 | + } |
|
170 | 174 | } |
171 | 175 | } |
172 | 176 | |
@@ -500,8 +504,7 @@ discard block |
||
500 | 504 | return false; |
501 | 505 | } elseif ( is_home() ) { |
502 | 506 | return true; |
503 | - } |
|
504 | - elseif ( is_singular( apply_filters( 'alnp_customizer_posts_ready', array( 'post' ) ) ) ) { |
|
507 | + } elseif ( is_singular( apply_filters( 'alnp_customizer_posts_ready', array( 'post' ) ) ) ) { |
|
505 | 508 | return true; |
506 | 509 | } |
507 | 510 |
@@ -10,11 +10,11 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | -if ( !class_exists( 'Auto_Load_Next_Post_Customizer' ) ) { |
|
17 | +if ( ! class_exists('Auto_Load_Next_Post_Customizer')) { |
|
18 | 18 | |
19 | 19 | class Auto_Load_Next_Post_Customizer { |
20 | 20 | |
@@ -25,8 +25,8 @@ discard block |
||
25 | 25 | * @access public |
26 | 26 | */ |
27 | 27 | public function __construct() { |
28 | - add_action( 'customize_register', array( $this, 'alnp_init_customizer' ), 50 ); |
|
29 | - add_filter( 'customize_loaded_components', array( $this, 'alnp_remove_widgets_panel' ) ); |
|
28 | + add_action('customize_register', array($this, 'alnp_init_customizer'), 50); |
|
29 | + add_filter('customize_loaded_components', array($this, 'alnp_remove_widgets_panel')); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
@@ -36,21 +36,21 @@ discard block |
||
36 | 36 | * @since 1.5.0 |
37 | 37 | * @param WP_Customize_Manager $wp_customize The Customizer object. |
38 | 38 | */ |
39 | - public function alnp_init_customizer( $wp_customize ) { |
|
39 | + public function alnp_init_customizer($wp_customize) { |
|
40 | 40 | /** |
41 | 41 | * Dont add settings to the customizer if the user does |
42 | 42 | * not have permission to make changes to the theme. |
43 | 43 | */ |
44 | - if ( ! current_user_can( 'edit_theme_options' ) ) { |
|
44 | + if ( ! current_user_can('edit_theme_options')) { |
|
45 | 45 | return; |
46 | 46 | } |
47 | 47 | |
48 | 48 | // Load custom controllers. |
49 | - require_once( dirname( __FILE__ ) . '/class-alnp-arbitrary-controller.php' ); |
|
49 | + require_once(dirname(__FILE__).'/class-alnp-arbitrary-controller.php'); |
|
50 | 50 | //require_once( dirname( __FILE__ ) . '/class-alnp-display-video-controller.php' ); |
51 | 51 | |
52 | 52 | // Auto Load Next Post Panel. |
53 | - $panel = array( 'panel' => 'alnp' ); |
|
53 | + $panel = array('panel' => 'alnp'); |
|
54 | 54 | |
55 | 55 | /** |
56 | 56 | * Add the main panel and sections. |
@@ -59,11 +59,11 @@ discard block |
||
59 | 59 | */ |
60 | 60 | $wp_customize->add_panel( |
61 | 61 | 'alnp', array( |
62 | - 'title' => esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), |
|
62 | + 'title' => esc_html__('Auto Load Next Post', 'auto-load-next-post'), |
|
63 | 63 | 'capability' => 'edit_theme_options', |
64 | - 'description' => esc_html__( 'Auto Load Next Post increases your pageviews by engaging the site viewers to keep reading your content rather than increasing your bounce rate.', 'auto-load-next-post' ), |
|
64 | + 'description' => esc_html__('Auto Load Next Post increases your pageviews by engaging the site viewers to keep reading your content rather than increasing your bounce rate.', 'auto-load-next-post'), |
|
65 | 65 | 'priority' => 160, |
66 | - 'active_callback' => array( $this, 'is_page_alnp_ready' ) |
|
66 | + 'active_callback' => array($this, 'is_page_alnp_ready') |
|
67 | 67 | ) |
68 | 68 | ); |
69 | 69 | |
@@ -71,24 +71,24 @@ discard block |
||
71 | 71 | $sections = $this->alnp_get_customizer_sections(); |
72 | 72 | |
73 | 73 | // Add each section. |
74 | - foreach ( $sections as $section => $args ) { |
|
74 | + foreach ($sections as $section => $args) { |
|
75 | 75 | /** |
76 | 76 | * If we are not only viewing Auto Load Next Post customizer sections |
77 | 77 | * then move them under our own panel. |
78 | 78 | */ |
79 | - if ( ! $this->alnp_is_customizer() ) { |
|
80 | - $args = array_merge( $args, $panel ); |
|
79 | + if ( ! $this->alnp_is_customizer()) { |
|
80 | + $args = array_merge($args, $panel); |
|
81 | 81 | } |
82 | 82 | |
83 | - $wp_customize->add_section( $section, $args ); |
|
83 | + $wp_customize->add_section($section, $args); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | // Get plugin settings. |
87 | 87 | $settings = $this->alnp_get_customizer_settings(); |
88 | 88 | |
89 | 89 | // Add each setting. |
90 | - foreach ( $settings as $setting => $args ) { |
|
91 | - $wp_customize->add_setting( $setting, $args ); |
|
90 | + foreach ($settings as $setting => $args) { |
|
91 | + $wp_customize->add_setting($setting, $args); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -97,16 +97,16 @@ discard block |
||
97 | 97 | * @since 1.5.0 |
98 | 98 | * @param WP_Customize_Manager $wp_customize The Customizer object. |
99 | 99 | */ |
100 | - do_action( 'alnp_customizer_register', $wp_customize ); |
|
100 | + do_action('alnp_customizer_register', $wp_customize); |
|
101 | 101 | |
102 | 102 | $controls = $this->alnp_get_customizer_controls(); |
103 | 103 | |
104 | - foreach ( $controls as $control => $args ) { |
|
105 | - $wp_customize->add_control( new $args['class']( $wp_customize, $control, $args ) ); |
|
104 | + foreach ($controls as $control => $args) { |
|
105 | + $wp_customize->add_control(new $args['class']($wp_customize, $control, $args)); |
|
106 | 106 | } |
107 | 107 | |
108 | - if ( $this->alnp_is_customizer() ) { |
|
109 | - $this->alnp_remove_default_customizer_panels( $wp_customize ); // Remove controls from the customizer. |
|
108 | + if ($this->alnp_is_customizer()) { |
|
109 | + $this->alnp_remove_default_customizer_panels($wp_customize); // Remove controls from the customizer. |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | // Video Help - Coming Soon |
@@ -128,30 +128,30 @@ discard block |
||
128 | 128 | * to tell users about the pro version, what comes with it |
129 | 129 | * and link to product page. |
130 | 130 | */ |
131 | - if ( ! is_alnp_pro_version_installed() ) { |
|
132 | - include_once( dirname( __FILE__ ) . '/class-alnp-pro-preview-controller.php' ); |
|
131 | + if ( ! is_alnp_pro_version_installed()) { |
|
132 | + include_once(dirname(__FILE__).'/class-alnp-pro-preview-controller.php'); |
|
133 | 133 | |
134 | 134 | $preview_args = array( |
135 | - 'title' => esc_html__( 'More?', 'auto-load-next-post' ), |
|
135 | + 'title' => esc_html__('More?', 'auto-load-next-post'), |
|
136 | 136 | 'priority' => 999, |
137 | 137 | ); |
138 | 138 | |
139 | - if ( ! $this->alnp_is_customizer() ) { |
|
140 | - $preview_args = array_merge( $preview_args, $panel ); |
|
139 | + if ( ! $this->alnp_is_customizer()) { |
|
140 | + $preview_args = array_merge($preview_args, $panel); |
|
141 | 141 | } |
142 | 142 | |
143 | - $wp_customize->add_section( 'alnp_pro_preview', $preview_args ); |
|
143 | + $wp_customize->add_section('alnp_pro_preview', $preview_args); |
|
144 | 144 | |
145 | - $wp_customize->add_setting( 'alnp_pro_preview', array( |
|
145 | + $wp_customize->add_setting('alnp_pro_preview', array( |
|
146 | 146 | 'default' => null, |
147 | - ) ); |
|
147 | + )); |
|
148 | 148 | |
149 | - $wp_customize->add_control( new Auto_Load_Next_Post_Pro_Preview_Controller( $wp_customize, 'alnp_pro_preview', array( |
|
150 | - 'label' => __( 'Looking for more options?', 'auto-load-next-post' ), |
|
149 | + $wp_customize->add_control(new Auto_Load_Next_Post_Pro_Preview_Controller($wp_customize, 'alnp_pro_preview', array( |
|
150 | + 'label' => __('Looking for more options?', 'auto-load-next-post'), |
|
151 | 151 | 'section' => 'alnp_pro_preview', |
152 | 152 | 'settings' => 'alnp_pro_preview', |
153 | 153 | 'priority' => 1, |
154 | - ) ) ); |
|
154 | + ))); |
|
155 | 155 | } |
156 | 156 | } // END alnp_init_customizer() |
157 | 157 | |
@@ -162,11 +162,11 @@ discard block |
||
162 | 162 | * @param array $components Core Customizer components list. |
163 | 163 | * @return array (Maybe) modified components list. |
164 | 164 | */ |
165 | - public function alnp_remove_widgets_panel( $components ) { |
|
166 | - if ( $this->alnp_is_customizer() ) { |
|
167 | - foreach( $components as $key => $component ) { |
|
168 | - if ( $component == 'widgets' ) unset( $components[ 'widgets' ] ); |
|
169 | - if ( $component == 'nav_menus' ) unset( $components[ 'nav_menus' ] ); |
|
165 | + public function alnp_remove_widgets_panel($components) { |
|
166 | + if ($this->alnp_is_customizer()) { |
|
167 | + foreach ($components as $key => $component) { |
|
168 | + if ($component == 'widgets') unset($components['widgets']); |
|
169 | + if ($component == 'nav_menus') unset($components['nav_menus']); |
|
170 | 170 | } |
171 | 171 | } |
172 | 172 | |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | * @param object $wp_customize |
182 | 182 | * @return boolean |
183 | 183 | */ |
184 | - public function alnp_remove_default_customizer_panels( $wp_customize ) { |
|
184 | + public function alnp_remove_default_customizer_panels($wp_customize) { |
|
185 | 185 | global $wp_customize; |
186 | 186 | |
187 | 187 | $wp_customize->remove_section("themes"); |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | * @return boolean |
205 | 205 | */ |
206 | 206 | public function alnp_is_customizer() { |
207 | - return isset( $_GET['alnp-customizer'] ) && $_GET['alnp-customizer'] === 'yes'; |
|
207 | + return isset($_GET['alnp-customizer']) && $_GET['alnp-customizer'] === 'yes'; |
|
208 | 208 | } // END alnp_is_customizer() |
209 | 209 | |
210 | 210 | /** |
@@ -219,23 +219,23 @@ discard block |
||
219 | 219 | * |
220 | 220 | * @param array $sections Customizer sections to add. |
221 | 221 | */ |
222 | - return apply_filters( 'auto_load_next_post_get_customizer_sections', array( |
|
222 | + return apply_filters('auto_load_next_post_get_customizer_sections', array( |
|
223 | 223 | 'auto_load_next_post_theme_selectors' => array( |
224 | 224 | 'capability' => 'edit_theme_options', |
225 | - 'title' => esc_html__( 'Theme Selectors', 'auto-load-next-post' ), |
|
226 | - 'description' => sprintf( __( 'Set the theme selectors below according to the theme. %1$sHow to find my theme selectors?%2$s', 'auto-load-next-post' ), '<a href="' . esc_url( AUTO_LOAD_NEXT_POST_STORE_URL . 'documentation/find-theme-selectors/?utm_source=wpcustomizer&utm_campaign=plugin-settings-theme-selectors' ) . '" target="_blank">', '</a>' ), |
|
225 | + 'title' => esc_html__('Theme Selectors', 'auto-load-next-post'), |
|
226 | + 'description' => sprintf(__('Set the theme selectors below according to the theme. %1$sHow to find my theme selectors?%2$s', 'auto-load-next-post'), '<a href="'.esc_url(AUTO_LOAD_NEXT_POST_STORE_URL.'documentation/find-theme-selectors/?utm_source=wpcustomizer&utm_campaign=plugin-settings-theme-selectors').'" target="_blank">', '</a>'), |
|
227 | 227 | ), |
228 | 228 | 'auto_load_next_post_misc' => array( |
229 | 229 | 'capability' => 'edit_theme_options', |
230 | - 'title' => esc_html__( 'Misc Settings', 'auto-load-next-post' ), |
|
231 | - 'description' => sprintf( __( 'Here you can set if you want to track pageviews, remove comments and load %s javascript in the footer.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ), |
|
230 | + 'title' => esc_html__('Misc Settings', 'auto-load-next-post'), |
|
231 | + 'description' => sprintf(__('Here you can set if you want to track pageviews, remove comments and load %s javascript in the footer.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')), |
|
232 | 232 | ), |
233 | 233 | 'auto_load_next_post_events' => array( |
234 | 234 | 'capability' => 'edit_theme_options', |
235 | - 'title' => esc_html__( 'Events', 'auto-load-next-post' ), |
|
236 | - 'description' => sprintf( __( 'Below you can enter external JavaScript events to be triggered alongside %1$s native events. Separate each event like so: %2$s', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), '<code>event1, event2,</code>' ), |
|
235 | + 'title' => esc_html__('Events', 'auto-load-next-post'), |
|
236 | + 'description' => sprintf(__('Below you can enter external JavaScript events to be triggered alongside %1$s native events. Separate each event like so: %2$s', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), '<code>event1, event2,</code>'), |
|
237 | 237 | ), |
238 | - ) ); |
|
238 | + )); |
|
239 | 239 | } // END alnp_get_customizer_sections() |
240 | 240 | |
241 | 241 | /** |
@@ -252,12 +252,12 @@ discard block |
||
252 | 252 | * |
253 | 253 | * @param array $settings Customizer settings to add. |
254 | 254 | */ |
255 | - return apply_filters( 'auto_load_next_post_get_customizer_settings', array( |
|
255 | + return apply_filters('auto_load_next_post_get_customizer_settings', array( |
|
256 | 256 | 'auto_load_next_post_content_container' => array( |
257 | 257 | 'capability' => 'edit_theme_options', |
258 | 258 | 'default' => $settings['alnp_content_container'], |
259 | 259 | 'sanitize_callback' => 'wp_filter_post_kses', |
260 | - 'validate_callback' => array( $this, 'alnp_validate_content_container_selector' ), |
|
260 | + 'validate_callback' => array($this, 'alnp_validate_content_container_selector'), |
|
261 | 261 | 'transport' => 'postMessage', |
262 | 262 | 'type' => 'option', |
263 | 263 | ), |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | 'capability' => 'edit_theme_options', |
266 | 266 | 'default' => $settings['alnp_title_selector'], |
267 | 267 | 'sanitize_callback' => 'wp_filter_post_kses', |
268 | - 'validate_callback' => array( $this, 'alnp_validate_post_title_selector' ), |
|
268 | + 'validate_callback' => array($this, 'alnp_validate_post_title_selector'), |
|
269 | 269 | 'transport' => 'postMessage', |
270 | 270 | 'type' => 'option', |
271 | 271 | ), |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | 'capability' => 'edit_theme_options', |
274 | 274 | 'default' => $settings['alnp_navigation_container'], |
275 | 275 | 'sanitize_callback' => 'wp_filter_post_kses', |
276 | - 'validate_callback' => array( $this, 'alnp_validate_post_navigation_selector' ), |
|
276 | + 'validate_callback' => array($this, 'alnp_validate_post_navigation_selector'), |
|
277 | 277 | 'transport' => 'postMessage', |
278 | 278 | 'type' => 'option', |
279 | 279 | ), |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | 'transport' => 'postMessage', |
322 | 322 | 'type' => 'option', |
323 | 323 | ), |
324 | - ) ); |
|
324 | + )); |
|
325 | 325 | } // END alnp_get_customizer_settings() |
326 | 326 | |
327 | 327 | /** |
@@ -339,80 +339,80 @@ discard block |
||
339 | 339 | * |
340 | 340 | * @param array $controls Customizer controls to add. |
341 | 341 | */ |
342 | - return apply_filters( 'auto_load_next_post_get_customizer_controls', array( |
|
342 | + return apply_filters('auto_load_next_post_get_customizer_controls', array( |
|
343 | 343 | 'alnp_content_container' => array( |
344 | 344 | 'class' => 'WP_Customize_Control', |
345 | - 'label' => esc_html__( 'Content Container', 'auto-load-next-post' ), |
|
346 | - 'description' => sprintf( __( 'The primary container where the post content is loaded in. Default: %s', 'auto-load-next-post' ), '<code>main.site-main</code>' ), |
|
345 | + 'label' => esc_html__('Content Container', 'auto-load-next-post'), |
|
346 | + 'description' => sprintf(__('The primary container where the post content is loaded in. Default: %s', 'auto-load-next-post'), '<code>main.site-main</code>'), |
|
347 | 347 | 'section' => 'auto_load_next_post_theme_selectors', |
348 | 348 | 'settings' => 'auto_load_next_post_content_container', |
349 | 349 | 'type' => 'text', |
350 | 350 | ), |
351 | 351 | 'alnp_title_selector' => array( |
352 | 352 | 'class' => 'WP_Customize_Control', |
353 | - 'label' => esc_html__( 'Post Title Selector', 'auto-load-next-post' ), |
|
354 | - 'description' => sprintf( __( 'Used to identify which article the user is reading and track should Google Analytics or other analytics be enabled. Default: %s', 'auto-load-next-post' ), '<code>h1.entry-title</code>' ), |
|
353 | + 'label' => esc_html__('Post Title Selector', 'auto-load-next-post'), |
|
354 | + 'description' => sprintf(__('Used to identify which article the user is reading and track should Google Analytics or other analytics be enabled. Default: %s', 'auto-load-next-post'), '<code>h1.entry-title</code>'), |
|
355 | 355 | 'section' => 'auto_load_next_post_theme_selectors', |
356 | 356 | 'settings' => 'auto_load_next_post_title_selector', |
357 | 357 | 'type' => 'text', |
358 | 358 | ), |
359 | 359 | 'alnp_navigation_container' => array( |
360 | 360 | 'class' => 'WP_Customize_Control', |
361 | - 'label' => esc_html__( 'Post Navigation Container', 'auto-load-next-post' ), |
|
362 | - 'description' => sprintf( __( 'Used to identify which post to load next if any. Default: %s', 'auto-load-next-post' ), '<code>nav.post-navigation</code>' ), |
|
361 | + 'label' => esc_html__('Post Navigation Container', 'auto-load-next-post'), |
|
362 | + 'description' => sprintf(__('Used to identify which post to load next if any. Default: %s', 'auto-load-next-post'), '<code>nav.post-navigation</code>'), |
|
363 | 363 | 'section' => 'auto_load_next_post_theme_selectors', |
364 | 364 | 'settings' => 'auto_load_next_post_navigation_container', |
365 | 365 | 'type' => 'text', |
366 | 366 | ), |
367 | 367 | 'alnp_comments_container' => array( |
368 | 368 | 'class' => 'WP_Customize_Control', |
369 | - 'label' => esc_html__( 'Comments Container', 'auto-load-next-post' ), |
|
370 | - 'description' => sprintf( __( 'Used to remove comments if enabled under <strong>%1$sMisc%2$s</strong> settings. Default: %3$s', 'auto-load-next-post' ), '<a href="javascript:wp.customize.section( \'auto_load_next_post_misc\' ).focus();">', '</a>', '<code>div#comments</code>' ), |
|
369 | + 'label' => esc_html__('Comments Container', 'auto-load-next-post'), |
|
370 | + 'description' => sprintf(__('Used to remove comments if enabled under <strong>%1$sMisc%2$s</strong> settings. Default: %3$s', 'auto-load-next-post'), '<a href="javascript:wp.customize.section( \'auto_load_next_post_misc\' ).focus();">', '</a>', '<code>div#comments</code>'), |
|
371 | 371 | 'section' => 'auto_load_next_post_theme_selectors', |
372 | 372 | 'settings' => 'auto_load_next_post_comments_container', |
373 | 373 | 'type' => 'text', |
374 | 374 | ), |
375 | 375 | 'alnp_remove_comments' => array( |
376 | 376 | 'class' => 'WP_Customize_Control', |
377 | - 'label' => esc_html__( 'Remove Comments', 'auto-load-next-post' ), |
|
378 | - 'description' => esc_html__( 'Enable to remove comments when each post loads including the initial post.', 'auto-load-next-post' ), |
|
377 | + 'label' => esc_html__('Remove Comments', 'auto-load-next-post'), |
|
378 | + 'description' => esc_html__('Enable to remove comments when each post loads including the initial post.', 'auto-load-next-post'), |
|
379 | 379 | 'section' => 'auto_load_next_post_misc', |
380 | 380 | 'settings' => 'auto_load_next_post_remove_comments', |
381 | 381 | 'type' => 'checkbox', |
382 | 382 | ), |
383 | 383 | 'alnp_google_analytics' => array( |
384 | 384 | 'class' => 'WP_Customize_Control', |
385 | - 'label' => esc_html__( 'Update Google Analytics', 'auto-load-next-post' ), |
|
386 | - 'description' => esc_html__( 'Enable to track each post the visitor is reading. This will count as a pageview. You must already have Google Analytics setup.', 'auto-load-next-post' ), |
|
385 | + 'label' => esc_html__('Update Google Analytics', 'auto-load-next-post'), |
|
386 | + 'description' => esc_html__('Enable to track each post the visitor is reading. This will count as a pageview. You must already have Google Analytics setup.', 'auto-load-next-post'), |
|
387 | 387 | 'section' => 'auto_load_next_post_misc', |
388 | 388 | 'settings' => 'auto_load_next_post_google_analytics', |
389 | 389 | 'type' => 'checkbox', |
390 | 390 | ), |
391 | 391 | 'alnp_js_footer' => array( |
392 | 392 | 'class' => 'WP_Customize_Control', |
393 | - 'label' => esc_html__( 'JavaScript in Footer?', 'auto-load-next-post' ), |
|
394 | - 'description' => esc_html__( 'Enable to load Auto Load Next Post in the footer instead of the header. Can be useful to optimize your site.', 'auto-load-next-post' ), |
|
393 | + 'label' => esc_html__('JavaScript in Footer?', 'auto-load-next-post'), |
|
394 | + 'description' => esc_html__('Enable to load Auto Load Next Post in the footer instead of the header. Can be useful to optimize your site.', 'auto-load-next-post'), |
|
395 | 395 | 'section' => 'auto_load_next_post_misc', |
396 | 396 | 'settings' => 'auto_load_next_post_google_analytics', |
397 | 397 | 'type' => 'checkbox', |
398 | 398 | ), |
399 | 399 | 'alnp_on_load_event' => array( |
400 | 400 | 'class' => 'WP_Customize_Control', |
401 | - 'label' => esc_html__( 'Post loaded', 'auto-load-next-post' ), |
|
402 | - 'description' => esc_html__( 'Events listed here will be triggered after a new post has loaded.', 'auto-load-next-post' ), |
|
401 | + 'label' => esc_html__('Post loaded', 'auto-load-next-post'), |
|
402 | + 'description' => esc_html__('Events listed here will be triggered after a new post has loaded.', 'auto-load-next-post'), |
|
403 | 403 | 'section' => 'auto_load_next_post_events', |
404 | 404 | 'settings' => 'auto_load_next_post_on_load_event', |
405 | 405 | 'type' => 'textarea', |
406 | 406 | ), |
407 | 407 | 'alnp_on_entering_event' => array( |
408 | 408 | 'class' => 'WP_Customize_Control', |
409 | - 'label' => esc_html__( 'Entering a Post', 'auto-load-next-post' ), |
|
410 | - 'description' => esc_html__( 'Events listed here will be triggered when entering a post.', 'auto-load-next-post' ), |
|
409 | + 'label' => esc_html__('Entering a Post', 'auto-load-next-post'), |
|
410 | + 'description' => esc_html__('Events listed here will be triggered when entering a post.', 'auto-load-next-post'), |
|
411 | 411 | 'section' => 'auto_load_next_post_events', |
412 | 412 | 'settings' => 'auto_load_next_post_on_entering_event', |
413 | 413 | 'type' => 'textarea', |
414 | 414 | ), |
415 | - ) ); |
|
415 | + )); |
|
416 | 416 | } // END alnp_get_customizer_controls() |
417 | 417 | |
418 | 418 | /** |
@@ -423,9 +423,9 @@ discard block |
||
423 | 423 | * @param string $value Value, normally pre-sanitized. |
424 | 424 | * @return WP_Error $validity |
425 | 425 | */ |
426 | - public function alnp_validate_content_container_selector( $validity, $value ) { |
|
427 | - if ( empty( $value ) ) { |
|
428 | - $validity->add( 'required', esc_html__( 'The content container selector is empty. Will not know where to load posts without it.', 'auto-load-next-post' ) ); |
|
426 | + public function alnp_validate_content_container_selector($validity, $value) { |
|
427 | + if (empty($value)) { |
|
428 | + $validity->add('required', esc_html__('The content container selector is empty. Will not know where to load posts without it.', 'auto-load-next-post')); |
|
429 | 429 | } |
430 | 430 | |
431 | 431 | return $validity; |
@@ -439,9 +439,9 @@ discard block |
||
439 | 439 | * @param string $value Value, normally pre-sanitized. |
440 | 440 | * @return WP_Error $validity |
441 | 441 | */ |
442 | - public function alnp_validate_post_title_selector( $validity, $value ) { |
|
443 | - if ( empty( $value ) ) { |
|
444 | - $validity->add( 'required', esc_html__( 'The post title selector is empty. Will not be able to identify which article the user is reading.', 'auto-load-next-post' ) ); |
|
442 | + public function alnp_validate_post_title_selector($validity, $value) { |
|
443 | + if (empty($value)) { |
|
444 | + $validity->add('required', esc_html__('The post title selector is empty. Will not be able to identify which article the user is reading.', 'auto-load-next-post')); |
|
445 | 445 | } |
446 | 446 | |
447 | 447 | return $validity; |
@@ -455,9 +455,9 @@ discard block |
||
455 | 455 | * @param string $value Value, normally pre-sanitized. |
456 | 456 | * @return WP_Error $validity |
457 | 457 | */ |
458 | - public function alnp_validate_post_navigation_selector( $validity, $value ) { |
|
459 | - if ( empty( $value ) ) { |
|
460 | - $validity->add( 'required', esc_html__( 'The post navigation container selector is empty. Required so ALNP can look up the next post to load.', 'auto-load-next-post' ) ); |
|
458 | + public function alnp_validate_post_navigation_selector($validity, $value) { |
|
459 | + if (empty($value)) { |
|
460 | + $validity->add('required', esc_html__('The post navigation container selector is empty. Required so ALNP can look up the next post to load.', 'auto-load-next-post')); |
|
461 | 461 | } |
462 | 462 | |
463 | 463 | return $validity; |
@@ -471,16 +471,16 @@ discard block |
||
471 | 471 | */ |
472 | 472 | public function alnp_get_settings() { |
473 | 473 | $args = array( |
474 | - 'alnp_content_container' => get_option( 'auto_load_next_post_content_container' ), |
|
475 | - 'alnp_title_selector' => get_option( 'auto_load_next_post_title_selector' ), |
|
476 | - 'alnp_navigation_container' => get_option( 'auto_load_next_post_navigation_container' ), |
|
477 | - 'alnp_previous_post_selector' => get_option( 'auto_load_next_post_previous_post_selector' ), |
|
478 | - 'alnp_comments_container' => get_option( 'auto_load_next_post_comments_container' ), |
|
479 | - 'alnp_remove_comments' => get_option( 'auto_load_next_post_remove_comments' ), |
|
480 | - 'alnp_google_analytics' => get_option( 'auto_load_next_post_google_analytics' ), |
|
481 | - 'alnp_js_footer' => get_option( 'auto_load_next_post_js_footer' ), |
|
482 | - 'alnp_on_load_event' => get_option( 'auto_load_next_post_on_load_event' ), |
|
483 | - 'alnp_on_entering_event' => get_option( 'auto_load_next_post_on_entering_event' ), |
|
474 | + 'alnp_content_container' => get_option('auto_load_next_post_content_container'), |
|
475 | + 'alnp_title_selector' => get_option('auto_load_next_post_title_selector'), |
|
476 | + 'alnp_navigation_container' => get_option('auto_load_next_post_navigation_container'), |
|
477 | + 'alnp_previous_post_selector' => get_option('auto_load_next_post_previous_post_selector'), |
|
478 | + 'alnp_comments_container' => get_option('auto_load_next_post_comments_container'), |
|
479 | + 'alnp_remove_comments' => get_option('auto_load_next_post_remove_comments'), |
|
480 | + 'alnp_google_analytics' => get_option('auto_load_next_post_google_analytics'), |
|
481 | + 'alnp_js_footer' => get_option('auto_load_next_post_js_footer'), |
|
482 | + 'alnp_on_load_event' => get_option('auto_load_next_post_on_load_event'), |
|
483 | + 'alnp_on_entering_event' => get_option('auto_load_next_post_on_entering_event'), |
|
484 | 484 | ); |
485 | 485 | |
486 | 486 | return $args; |
@@ -494,14 +494,14 @@ discard block |
||
494 | 494 | * @return boolean |
495 | 495 | */ |
496 | 496 | public function is_page_alnp_ready() { |
497 | - if ( is_front_page() && is_home() ) { |
|
497 | + if (is_front_page() && is_home()) { |
|
498 | 498 | return false; |
499 | - } elseif ( is_front_page() ) { |
|
499 | + } elseif (is_front_page()) { |
|
500 | 500 | return false; |
501 | - } elseif ( is_home() ) { |
|
501 | + } elseif (is_home()) { |
|
502 | 502 | return true; |
503 | 503 | } |
504 | - elseif ( is_singular( apply_filters( 'alnp_customizer_posts_ready', array( 'post' ) ) ) ) { |
|
504 | + elseif (is_singular(apply_filters('alnp_customizer_posts_ready', array('post')))) { |
|
505 | 505 | return true; |
506 | 506 | } |
507 | 507 |
@@ -10,12 +10,12 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | 17 | // Exit if Auto_Load_Next_Post_Customizer_Scripts class already exists. |
18 | -if ( !class_exists( 'Auto_Load_Next_Post_Customizer_Scripts' ) ) { |
|
18 | +if ( ! class_exists('Auto_Load_Next_Post_Customizer_Scripts')) { |
|
19 | 19 | |
20 | 20 | class Auto_Load_Next_Post_Customizer_Scripts { |
21 | 21 | |
@@ -26,8 +26,8 @@ discard block |
||
26 | 26 | * @access public |
27 | 27 | */ |
28 | 28 | public function __construct() { |
29 | - add_action( 'customize_preview_init', array( $this, 'alnp_add_customizer_preview_scripts' ) ); |
|
30 | - add_action( 'customize_controls_print_scripts', array( $this, 'alnp_add_scripts' ), 30 ); |
|
29 | + add_action('customize_preview_init', array($this, 'alnp_add_customizer_preview_scripts')); |
|
30 | + add_action('customize_controls_print_scripts', array($this, 'alnp_add_scripts'), 30); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * @since 1.5.0 |
37 | 37 | */ |
38 | 38 | public function alnp_add_customizer_preview_scripts() { |
39 | - Auto_Load_Next_Post::load_file( 'alnp-theme-customizer', '/assets/js/customizer/theme-customizer.js', true, array( 'customize-preview' ), '', true ); |
|
39 | + Auto_Load_Next_Post::load_file('alnp-theme-customizer', '/assets/js/customizer/theme-customizer.js', true, array('customize-preview'), '', true); |
|
40 | 40 | } // END alnp_add_customizer_preview_scripts() |
41 | 41 | |
42 | 42 | /** |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | * but we are not viewing a single post. |
68 | 68 | */ |
69 | 69 | if ( isExpanded && !is_page_single ) { |
70 | - wp.customize.previewer.previewUrl.set( '<?php echo esc_js( alnp_get_random_page_permalink() ); ?>' ); |
|
70 | + wp.customize.previewer.previewUrl.set( '<?php echo esc_js(alnp_get_random_page_permalink()); ?>' ); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | } ); |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | */ |
14 | 14 | |
15 | 15 | // Exit if accessed directly. |
16 | -if ( ! defined( 'ABSPATH' ) ) { |
|
16 | +if ( ! defined('ABSPATH')) { |
|
17 | 17 | exit; |
18 | 18 | } |
19 | 19 | |
@@ -26,12 +26,12 @@ discard block |
||
26 | 26 | * @version 1.5.4 |
27 | 27 | * @global WP_Query $wp_query - The object information defining the current request and determines what type of query it's dealing with. See https://codex.wordpress.org/Class_Reference/WP_Query |
28 | 28 | */ |
29 | -if ( ! function_exists( 'auto_load_next_post_template_redirect' ) ) { |
|
29 | +if ( ! function_exists('auto_load_next_post_template_redirect')) { |
|
30 | 30 | function auto_load_next_post_template_redirect() { |
31 | 31 | global $wp_query; |
32 | 32 | |
33 | 33 | // If this is not a request for alnp or a singular object then bail |
34 | - if ( ! isset( $wp_query->query_vars['alnp'] ) || ! is_singular() ) { |
|
34 | + if ( ! isset($wp_query->query_vars['alnp']) || ! is_singular()) { |
|
35 | 35 | return; |
36 | 36 | } |
37 | 37 | |
@@ -40,28 +40,28 @@ discard block |
||
40 | 40 | * If theme does not have a template file for Auto Load Next Post, |
41 | 41 | * the plugin will load a default template. |
42 | 42 | */ |
43 | - $child_path = get_stylesheet_directory() . '/' . AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
44 | - $template_path = get_template_directory() . '/' . AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
43 | + $child_path = get_stylesheet_directory().'/'.AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
44 | + $template_path = get_template_directory().'/'.AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
45 | 45 | $default_path = AUTO_LOAD_NEXT_POST_FILE_PATH; |
46 | 46 | |
47 | - if ( file_exists( $child_path . 'content-alnp.php' ) ) { |
|
48 | - $template_redirect = $child_path . 'content-alnp.php'; |
|
47 | + if (file_exists($child_path.'content-alnp.php')) { |
|
48 | + $template_redirect = $child_path.'content-alnp.php'; |
|
49 | 49 | } |
50 | - else if( file_exists( $template_path . 'content-alnp.php') ) { |
|
51 | - $template_redirect = $template_path . 'content-alnp.php'; |
|
50 | + else if (file_exists($template_path.'content-alnp.php')) { |
|
51 | + $template_redirect = $template_path.'content-alnp.php'; |
|
52 | 52 | } |
53 | - else if( file_exists( $default_path . '/template/content-alnp.php' ) ) { |
|
54 | - $template_redirect = $default_path . '/template/content-alnp.php'; |
|
53 | + else if (file_exists($default_path.'/template/content-alnp.php')) { |
|
54 | + $template_redirect = $default_path.'/template/content-alnp.php'; |
|
55 | 55 | } |
56 | 56 | |
57 | - $template_redirect = apply_filters( 'alnp_template_redirect', $template_redirect ); |
|
57 | + $template_redirect = apply_filters('alnp_template_redirect', $template_redirect); |
|
58 | 58 | |
59 | - include( $template_redirect ); |
|
59 | + include($template_redirect); |
|
60 | 60 | |
61 | 61 | exit; |
62 | 62 | } // END auto_load_next_post_template_redirect() |
63 | 63 | } |
64 | -add_action( 'template_redirect', 'auto_load_next_post_template_redirect' ); |
|
64 | +add_action('template_redirect', 'auto_load_next_post_template_redirect'); |
|
65 | 65 | |
66 | 66 | /** |
67 | 67 | * Adds the comments template after the post content. |
@@ -70,15 +70,15 @@ discard block |
||
70 | 70 | * @since 1.4.8 |
71 | 71 | * @version 1.5.4 |
72 | 72 | */ |
73 | -if ( ! function_exists( 'auto_load_next_post_comments' ) ) { |
|
73 | +if ( ! function_exists('auto_load_next_post_comments')) { |
|
74 | 74 | function auto_load_next_post_comments() { |
75 | 75 | // If comments are open or we have at least one comment, load up the comment template. |
76 | - if ( comments_open() || get_comments_number() ) : |
|
76 | + if (comments_open() || get_comments_number()) : |
|
77 | 77 | comments_template(); |
78 | 78 | endif; |
79 | 79 | } // END auto_load_next_post_comments() |
80 | 80 | } |
81 | -add_action( 'alnp_load_after_content', 'auto_load_next_post_comments', 1, 5 ); |
|
81 | +add_action('alnp_load_after_content', 'auto_load_next_post_comments', 1, 5); |
|
82 | 82 | |
83 | 83 | /** |
84 | 84 | * Adds the post navigation for the previous link only after the post content. |
@@ -87,16 +87,16 @@ discard block |
||
87 | 87 | * @since 1.4.8 |
88 | 88 | * @version 1.5.4 |
89 | 89 | */ |
90 | -if ( ! function_exists( 'auto_load_next_post_navigation' ) ) { |
|
90 | +if ( ! function_exists('auto_load_next_post_navigation')) { |
|
91 | 91 | function auto_load_next_post_navigation() { |
92 | 92 | ?> |
93 | 93 | <nav class="navigation post-navigation" role="navigation"> |
94 | - <span class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'auto-load-next-post' ) . '</span> %title' ); ?></span> |
|
94 | + <span class="nav-previous"><?php previous_post_link('%link', '<span class="meta-nav">'._x('←', 'Previous post link', 'auto-load-next-post').'</span> %title'); ?></span> |
|
95 | 95 | </nav> |
96 | 96 | <?php |
97 | 97 | } // END auto_load_next_post_navigation() |
98 | 98 | } |
99 | -add_action( 'alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10 ); |
|
99 | +add_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10); |
|
100 | 100 | |
101 | 101 | /** |
102 | 102 | * Returns the permalink of a random page |
@@ -105,8 +105,8 @@ discard block |
||
105 | 105 | * @param string $post_type - Default is post. |
106 | 106 | * @return int|boolean |
107 | 107 | */ |
108 | -if ( ! function_exists( 'alnp_get_random_page_permalink' ) ) { |
|
109 | - function alnp_get_random_page_permalink( $post_type = 'post' ) { |
|
108 | +if ( ! function_exists('alnp_get_random_page_permalink')) { |
|
109 | + function alnp_get_random_page_permalink($post_type = 'post') { |
|
110 | 110 | $args = array( |
111 | 111 | 'post_type' => $post_type, |
112 | 112 | 'post_status' => 'publish', |
@@ -114,13 +114,13 @@ discard block |
||
114 | 114 | 'posts_per_page' => 1 |
115 | 115 | ); |
116 | 116 | |
117 | - $query = new WP_Query( $args ); |
|
117 | + $query = new WP_Query($args); |
|
118 | 118 | |
119 | - if ( $query->have_posts() ) { |
|
120 | - while ( $query->have_posts() ) : $query->the_post(); |
|
119 | + if ($query->have_posts()) { |
|
120 | + while ($query->have_posts()) : $query->the_post(); |
|
121 | 121 | $id = get_the_ID(); |
122 | 122 | |
123 | - return get_permalink( $id ); |
|
123 | + return get_permalink($id); |
|
124 | 124 | endwhile; |
125 | 125 | } |
126 | 126 | else { |
@@ -46,11 +46,9 @@ discard block |
||
46 | 46 | |
47 | 47 | if ( file_exists( $child_path . 'content-alnp.php' ) ) { |
48 | 48 | $template_redirect = $child_path . 'content-alnp.php'; |
49 | - } |
|
50 | - else if( file_exists( $template_path . 'content-alnp.php') ) { |
|
49 | + } else if( file_exists( $template_path . 'content-alnp.php') ) { |
|
51 | 50 | $template_redirect = $template_path . 'content-alnp.php'; |
52 | - } |
|
53 | - else if( file_exists( $default_path . '/template/content-alnp.php' ) ) { |
|
51 | + } else if( file_exists( $default_path . '/template/content-alnp.php' ) ) { |
|
54 | 52 | $template_redirect = $default_path . '/template/content-alnp.php'; |
55 | 53 | } |
56 | 54 | |
@@ -122,8 +120,7 @@ discard block |
||
122 | 120 | |
123 | 121 | return get_permalink( $id ); |
124 | 122 | endwhile; |
125 | - } |
|
126 | - else { |
|
123 | + } else { |
|
127 | 124 | return false; |
128 | 125 | } |
129 | 126 | } // END alnp_get_random_page_permalink() |