Completed
Branch master (947840)
by
unknown
01:39
created
includes/customizer/class-alnp-arbitrary-controller.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,16 +10,16 @@  discard block
 block discarded – undo
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 WP_Customize_Control does not exsist.
18
-if ( ! class_exists( 'WP_Customize_Control' ) ) {
18
+if ( ! class_exists('WP_Customize_Control')) {
19 19
 	return null;
20 20
 }
21 21
 
22
-if ( !class_exists( 'Auto_Load_Next_Post_Arbitrary_Control' ) ) {
22
+if ( ! class_exists('Auto_Load_Next_Post_Arbitrary_Control')) {
23 23
 
24 24
 	/**
25 25
 	 * The 'alnp_arbitrary' for Auto Load Next Post Arbitrary control class.
@@ -32,14 +32,14 @@  discard block
 block discarded – undo
32 32
 		 * @return void
33 33
 		 */
34 34
 		public function render_content() {
35
-			switch ( $this->type ) {
35
+			switch ($this->type) {
36 36
 				default:
37 37
 				case 'text':
38
-					echo '<p class="description">' . wp_kses_post( $this->description ) . '</p>';
38
+					echo '<p class="description">'.wp_kses_post($this->description).'</p>';
39 39
 					break;
40 40
 
41 41
 				case 'heading':
42
-					echo '<span class="customize-control-title">' . $this->label . '</span>';
42
+					echo '<span class="customize-control-title">'.$this->label.'</span>';
43 43
 					break;
44 44
 
45 45
 				case 'divider':
Please login to merge, or discard this patch.
includes/customizer/class-alnp-customizer.php 1 patch
Spacing   +101 added lines, -101 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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( 'https://autoloadnextpost.com/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('https://autoloadnextpost.com/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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
 		 * @param  string $post_type - Default is post.
517 517
 		 * @return int|boolean
518 518
 		 */
519
-		public static function alnp_get_random_page_permalink( $post_type = 'post' ) {
519
+		public static function alnp_get_random_page_permalink($post_type = 'post') {
520 520
 			$args = array(
521 521
 				'post_type'      => $post_type,
522 522
 				'post_status'    => 'publish',
@@ -524,13 +524,13 @@  discard block
 block discarded – undo
524 524
 				'posts_per_page' => 1
525 525
 			);
526 526
 
527
-			$query = new WP_Query( $args );
527
+			$query = new WP_Query($args);
528 528
 
529
-			if ( $query->have_posts() ) {
530
-				while ( $query->have_posts() ) : $query->the_post();
529
+			if ($query->have_posts()) {
530
+				while ($query->have_posts()) : $query->the_post();
531 531
 					$id = get_the_ID();
532 532
 
533
-					return get_permalink( $id );
533
+					return get_permalink($id);
534 534
 				endwhile;
535 535
 			}
536 536
 			else {
Please login to merge, or discard this patch.
includes/admin/settings/class-alnp-settings-events.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@  discard block
 block discarded – undo
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_Settings_Events_Tab' ) ) {
17
+if ( ! class_exists('Auto_Load_Next_Post_Settings_Events_Tab')) {
18 18
 
19 19
 	class Auto_Load_Next_Post_Settings_Events_Tab extends Auto_Load_Next_Post_Settings_Page {
20 20
 
@@ -25,11 +25,11 @@  discard block
 block discarded – undo
25 25
 		 */
26 26
 		public function __construct() {
27 27
 			$this->id    = 'events';
28
-			$this->label = esc_html__( 'Events', 'auto-load-next-post' );
28
+			$this->label = esc_html__('Events', 'auto-load-next-post');
29 29
 
30 30
 			parent::__construct();
31 31
 
32
-			add_action( 'auto_load_next_post_settings_' . $this->id, array( __CLASS__, 'is_jetpack_lazy_images_active' ), 10 );
32
+			add_action('auto_load_next_post_settings_'.$this->id, array(__CLASS__, 'is_jetpack_lazy_images_active'), 10);
33 33
 		} // END __construct()
34 34
 
35 35
 		/**
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
 		 * @static
41 41
 		 */
42 42
 		public static function is_jetpack_lazy_images_active() {
43
-			if ( alnp_check_jetpack() == 'yes' ) {
44
-				if ( Jetpack::is_module_active( 'lazy-images' ) ) {
45
-					include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-jetpack-lazy-images-module.php' );
43
+			if (alnp_check_jetpack() == 'yes') {
44
+				if (Jetpack::is_module_active('lazy-images')) {
45
+					include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-jetpack-lazy-images-module.php');
46 46
 				}
47 47
 			}
48 48
 		} // END is_jetpack_lazy_images_active()
@@ -60,13 +60,13 @@  discard block
 block discarded – undo
60 60
 					array(
61 61
 						'title' => $this->label,
62 62
 						'type'  => 'title',
63
-						'desc'  => 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>' ),
63
+						'desc'  => 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>'),
64 64
 						'id'    => 'events_options'
65 65
 					),
66 66
 
67 67
 					array(
68
-						'title'    => esc_html__( 'Post loaded', 'auto-load-next-post' ),
69
-						'desc'     => esc_html__( 'Events listed here will be triggered after a new post has loaded.', 'auto-load-next-post' ),
68
+						'title'    => esc_html__('Post loaded', 'auto-load-next-post'),
69
+						'desc'     => esc_html__('Events listed here will be triggered after a new post has loaded.', 'auto-load-next-post'),
70 70
 						'id'       => 'auto_load_next_post_on_load_event',
71 71
 						'default'  => '',
72 72
 						'type'     => 'textarea',
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 					),
76 76
 
77 77
 					array(
78
-						'title'    => esc_html__( 'Entering a Post', 'auto-load-next-post' ),
79
-						'desc'     => esc_html__( 'Events listed here will be triggered when entering a post.', 'auto-load-next-post' ),
78
+						'title'    => esc_html__('Entering a Post', 'auto-load-next-post'),
79
+						'desc'     => esc_html__('Events listed here will be triggered when entering a post.', 'auto-load-next-post'),
80 80
 						'id'       => 'auto_load_next_post_on_entering_event',
81 81
 						'default'  => '',
82 82
 						'type'     => 'textarea',
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 		public function output() {
100 100
 			$settings = $this->get_settings();
101 101
 
102
-			Auto_Load_Next_Post_Admin_Settings::output_fields( $settings );
102
+			Auto_Load_Next_Post_Admin_Settings::output_fields($settings);
103 103
 		} // END output()
104 104
 
105 105
 		/**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 		public function save() {
111 111
 			$settings = $this->get_settings();
112 112
 
113
-			Auto_Load_Next_Post_Admin_Settings::save_fields( $settings );
113
+			Auto_Load_Next_Post_Admin_Settings::save_fields($settings);
114 114
 		} // END save()
115 115
 
116 116
 	} // END class
Please login to merge, or discard this patch.
includes/admin/views/html-notice-upgrade-warning.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 block discarded – undo
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
 <div class="notice notice-error is-dismissible">
18
-	<p><?php echo sprintf( __( 'Warning! Version 1.5.0 of %1$s is coming soon and is a major update. Before updating, please test on a staging site. %2$sLearn more about the changes in version 1.5.0 &raquo;%3$s', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), '<a href="https://autoloadnextpost.com/2018/05/28/whats-coming-in-v1-5-0-of-auto-load-next-post/" target="_blank">', '</a>' ); ?></p>
18
+	<p><?php echo sprintf(__('Warning! Version 1.5.0 of %1$s is coming soon and is a major update. Before updating, please test on a staging site. %2$sLearn more about the changes in version 1.5.0 &raquo;%3$s', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), '<a href="https://autoloadnextpost.com/2018/05/28/whats-coming-in-v1-5-0-of-auto-load-next-post/" target="_blank">', '</a>'); ?></p>
19 19
 </div>
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-storefront.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-make.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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,10 +29,10 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// Filters the repeater template location.
32
-		add_filter( 'alnp_template_redirect', array( __CLASS__, 'alnp_make_template_redirect' ) );
32
+		add_filter('alnp_template_redirect', array(__CLASS__, 'alnp_make_template_redirect'));
33 33
 
34 34
 		// Add theme support and preset the theme selectors.
35
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
35
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
36 36
 	} // END init()
37 37
 
38 38
 	/**
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 	 * @return string
44 44
 	 */
45 45
 	public static function alnp_make_template_redirect() {
46
-		return AUTO_LOAD_NEXT_POST_FILE_PATH . '/template/theme-support/make/content-alnp.php';
46
+		return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/make/content-alnp.php';
47 47
 	} // END alnp_make_template_redirect()
48 48
 
49 49
 	/**
@@ -54,14 +54,14 @@  discard block
 block discarded – undo
54 54
 	 * @static
55 55
 	 */
56 56
 	public static function add_theme_support() {
57
-		add_theme_support( 'auto-load-next-post', array(
57
+		add_theme_support('auto-load-next-post', array(
58 58
 			'content_container'    => 'main.site-main',
59 59
 			'title_selector'       => 'h1.entry-title',
60 60
 			'navigation_container' => 'nav.post-navigation',
61 61
 			'comments_container'   => 'div#comments',
62 62
 			'load_js_in_footer'    => 'no',
63 63
 			'lock_js_in_footer'    => 'no',
64
-		) );
64
+		));
65 65
 	} // END add_theme_support()
66 66
 
67 67
 } // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twenty-twelve.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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,13 +29,13 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// This removes the default post navigation in the repeater template.
32
-		remove_action( 'alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10 );
32
+		remove_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10);
33 33
 
34 34
 		// Add a compaitable post navigation.
35
-		add_action( 'alnp_load_after_content', array( __CLASS__, 'alnp_twentytwelve_post_navigation' ), 1, 10 );
35
+		add_action('alnp_load_after_content', array(__CLASS__, 'alnp_twentytwelve_post_navigation'), 1, 10);
36 36
 
37 37
 		// Add theme support and preset the theme selectors.
38
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
38
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
39 39
 	} // END init()
40 40
 
41 41
 	/**
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 	public static function alnp_twentytwelve_post_navigation() {
48 48
 	?>
49 49
 	<nav class="nav-single">
50
-		<h3 class="assistive-text"><?php _e( 'Post navigation', 'auto-load-next-post' ); ?></h3>
51
-		<span class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'auto-load-next-post' ) . '</span> %title' ); ?></span>
50
+		<h3 class="assistive-text"><?php _e('Post navigation', 'auto-load-next-post'); ?></h3>
51
+		<span class="nav-previous"><?php previous_post_link('%link', '<span class="meta-nav">'._x('&larr;', 'Previous post link', 'auto-load-next-post').'</span> %title'); ?></span>
52 52
 	</nav><!-- .nav-single -->
53 53
 	<?php
54 54
 	} // END alnp_twentytwelve_post_navigation()
@@ -61,14 +61,14 @@  discard block
 block discarded – undo
61 61
 	 * @static
62 62
 	 */
63 63
 	public static function add_theme_support() {
64
-		add_theme_support( 'auto-load-next-post', array(
64
+		add_theme_support('auto-load-next-post', array(
65 65
 			'content_container'    => '#content',
66 66
 			'title_selector'       => 'h1.entry-title',
67 67
 			'navigation_container' => '.nav-single',
68 68
 			'comments_container'   => 'div#comments',
69 69
 			'load_js_in_footer'    => 'no',
70 70
 			'lock_js_in_footer'    => 'no',
71
-		) );
71
+		));
72 72
 	} // END add_theme_support()
73 73
 
74 74
 } // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twenty-thirteen.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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,13 +29,13 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// This removes the default post navigation in the repeater template.
32
-		remove_action( 'alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10 );
32
+		remove_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10);
33 33
 
34 34
 		// Add a compaitable post navigation.
35
-		add_action( 'alnp_load_after_content', array( __CLASS__, 'alnp_twentythirteen_post_navigation' ), 1, 10 );
35
+		add_action('alnp_load_after_content', array(__CLASS__, 'alnp_twentythirteen_post_navigation'), 1, 10);
36 36
 
37 37
 		// Add theme support and preset the theme selectors.
38
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
38
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
39 39
 	} // END init()
40 40
 
41 41
 	/**
@@ -56,14 +56,14 @@  discard block
 block discarded – undo
56 56
 	 * @static
57 57
 	 */
58 58
 	public static function add_theme_support() {
59
-		add_theme_support( 'auto-load-next-post', array(
59
+		add_theme_support('auto-load-next-post', array(
60 60
 			'content_container'    => '#content',
61 61
 			'title_selector'       => 'h1.entry-title',
62 62
 			'navigation_container' => 'nav.post-navigation',
63 63
 			'comments_container'   => 'div#comments',
64 64
 			'load_js_in_footer'    => 'no',
65 65
 			'lock_js_in_footer'    => 'no',
66
-		) );
66
+		));
67 67
 	} // END add_theme_support()
68 68
 
69 69
 } // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twenty-eleven.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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,16 +29,16 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// This removes the default post navigation in the repeater template.
32
-		remove_action( 'alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10 );
32
+		remove_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10);
33 33
 
34 34
 		// Add a compaitable post navigation.
35
-		add_action( 'alnp_load_after_content', array( __CLASS__, 'alnp_twentyeleven_post_navigation' ), 1, 10 );
35
+		add_action('alnp_load_after_content', array(__CLASS__, 'alnp_twentyeleven_post_navigation'), 1, 10);
36 36
 
37 37
 		// Filters the repeater template location.
38
-		add_filter( 'alnp_template_redirect', array( __CLASS__, 'alnp_twentyeleven_template_redirect' ) );
38
+		add_filter('alnp_template_redirect', array(__CLASS__, 'alnp_twentyeleven_template_redirect'));
39 39
 
40 40
 		// Add theme support and preset the theme selectors.
41
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
41
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
42 42
 	} // END init()
43 43
 
44 44
 	/**
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
 	public static function alnp_twentyeleven_post_navigation() {
51 51
 		?>
52 52
 		<nav id="nav-single">
53
-			<h3 class="assistive-text"><?php _e( 'Post navigation', 'auto-load-next-post' ); ?></h3>
54
-			<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">&larr;</span> Previous', 'auto-load-next-post' ) ); ?></span>
53
+			<h3 class="assistive-text"><?php _e('Post navigation', 'auto-load-next-post'); ?></h3>
54
+			<span class="nav-previous"><?php previous_post_link('%link', __('<span class="meta-nav">&larr;</span> Previous', 'auto-load-next-post')); ?></span>
55 55
 		</nav><!-- #nav-single -->
56 56
 		<?php
57 57
 	} // END alnp_twentyeleven_post_navigation()
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	 * @return string
65 65
 	 */
66 66
 	public static function alnp_twentyeleven_template_redirect() {
67
-		return AUTO_LOAD_NEXT_POST_FILE_PATH . '/template/theme-support/twenty-eleven/content-alnp.php';
67
+		return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/twenty-eleven/content-alnp.php';
68 68
 	} // END alnp_twentyeleven_template_redirect()
69 69
 
70 70
 	/**
@@ -75,14 +75,14 @@  discard block
 block discarded – undo
75 75
 	 * @static
76 76
 	 */
77 77
 	public static function add_theme_support() {
78
-		add_theme_support( 'auto-load-next-post', array(
78
+		add_theme_support('auto-load-next-post', array(
79 79
 			'content_container'    => '#content',
80 80
 			'title_selector'       => 'h1.entry-title',
81 81
 			'navigation_container' => '#nav-single',
82 82
 			'comments_container'   => 'div#comments',
83 83
 			'load_js_in_footer'    => 'no',
84 84
 			'lock_js_in_footer'    => 'no',
85
-		) );
85
+		));
86 86
 	} // END add_theme_support()
87 87
 
88 88
 } // END class
Please login to merge, or discard this patch.