Completed
Branch master (d013b1)
by
unknown
01:46
created
includes/class-alnp-install.php 2 patches
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
@@ -138,12 +138,12 @@  discard block
 block discarded – undo
138 138
 		 * @since  1.5.0
139 139
 		 */
140 140
 		private static function set_js_in_footer() {
141
-			if ( is_alnp_supported() ) {
142
-				$load_js_in_footer = alnp_get_theme_support( 'load_js_in_footer' );
143
-				$lock_js_in_footer = alnp_get_theme_support( 'lock_js_in_footer' );
141
+			if (is_alnp_supported()) {
142
+				$load_js_in_footer = alnp_get_theme_support('load_js_in_footer');
143
+				$lock_js_in_footer = alnp_get_theme_support('lock_js_in_footer');
144 144
 
145
-				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 );
146
-				if ( ! empty( $lock_js_in_footer ) && $lock_js_in_footer == 'yes' ) update_option( 'auto_load_next_post_js_footer_locked', $lock_js_in_footer );
145
+				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);
146
+				if ( ! empty($lock_js_in_footer) && $lock_js_in_footer == 'yes') update_option('auto_load_next_post_js_footer_locked', $lock_js_in_footer);
147 147
 			}
148 148
 		} // END set_js_in_footer()
149 149
 
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 		 * @static
155 155
 		 */
156 156
 		private static function update_version() {
157
-			update_option( 'auto_load_next_post_version', AUTO_LOAD_NEXT_POST_VERSION );
157
+			update_option('auto_load_next_post_version', AUTO_LOAD_NEXT_POST_VERSION);
158 158
 		} // END update_version()
159 159
 
160 160
 		/**
@@ -166,13 +166,13 @@  discard block
 block discarded – undo
166 166
 		 * @version 1.5.0
167 167
 		 */
168 168
 		public static function set_install_date() {
169
-			$install_date = get_site_option( 'auto_load_next_post_install_date' );
169
+			$install_date = get_site_option('auto_load_next_post_install_date');
170 170
 
171 171
 			// If ALNP was installed before but the install date was not converted to time then convert it.
172
-			if ( ! empty( $install_date ) && !intval( $install_date ) ) {
173
-				update_site_option( 'auto_load_next_post_install_date', strtotime( $install_date ) );
172
+			if ( ! empty($install_date) && ! intval($install_date)) {
173
+				update_site_option('auto_load_next_post_install_date', strtotime($install_date));
174 174
 			} else {
175
-				add_site_option( 'auto_load_next_post_install_date', time() );
175
+				add_site_option('auto_load_next_post_install_date', time());
176 176
 			}
177 177
 		} // END set_install_date()
178 178
 
@@ -187,15 +187,15 @@  discard block
 block discarded – undo
187 187
 		 */
188 188
 		public static function create_options() {
189 189
 			// Include settings so that we can run through defaults
190
-			include_once( dirname( __FILE__ ) . '/admin/class-auto-load-next-post-admin-settings.php' );
190
+			include_once(dirname(__FILE__).'/admin/class-auto-load-next-post-admin-settings.php');
191 191
 
192 192
 			$settings = Auto_Load_Next_Post_Admin_Settings::get_settings_pages();
193 193
 
194
-			foreach ( $settings as $section ) {
195
-				foreach ( $section->get_settings() as $value ) {
196
-					if ( isset( $value['default'] ) && isset( $value['id'] ) ) {
197
-						$autoload = isset( $value['autoload'] ) ? (bool) $value['autoload'] : true;
198
-						add_option( $value['id'], $value['default'], '', ( $autoload ? 'yes' : 'no' ) );
194
+			foreach ($settings as $section) {
195
+				foreach ($section->get_settings() as $value) {
196
+					if (isset($value['default']) && isset($value['id'])) {
197
+						$autoload = isset($value['autoload']) ? (bool) $value['autoload'] : true;
198
+						add_option($value['id'], $value['default'], '', ($autoload ? 'yes' : 'no'));
199 199
 					}
200 200
 				}
201 201
 			}
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
 		 * @version 1.5.0
211 211
 		 */
212 212
 		public static function add_rewrite_endpoint() {
213
-			add_rewrite_endpoint( 'alnp', EP_PERMALINK | EP_PAGES | EP_ATTACHMENT );
213
+			add_rewrite_endpoint('alnp', EP_PERMALINK | EP_PAGES | EP_ATTACHMENT);
214 214
 		} // END add_rewrite_endpoint()
215 215
 
216 216
 		/**
Please login to merge, or discard this patch.
Braces   +18 added lines, -6 removed lines patch added patch discarded remove patch
@@ -121,10 +121,18 @@  discard block
 block discarded – undo
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
 
@@ -142,8 +150,12 @@  discard block
 block discarded – undo
142 150
 				$load_js_in_footer = alnp_get_theme_support( 'load_js_in_footer' );
143 151
 				$lock_js_in_footer = alnp_get_theme_support( 'lock_js_in_footer' );
144 152
 
145
-				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 );
146
-				if ( ! empty( $lock_js_in_footer ) && $lock_js_in_footer == 'yes' ) update_option( 'auto_load_next_post_js_footer_locked', $lock_js_in_footer );
153
+				if ( ! empty( $load_js_in_footer ) && $load_js_in_footer == 'yes' ) {
154
+					update_option( 'auto_load_next_post_load_js_in_footer', $load_js_in_footer );
155
+				}
156
+				if ( ! empty( $lock_js_in_footer ) && $lock_js_in_footer == 'yes' ) {
157
+					update_option( 'auto_load_next_post_js_footer_locked', $lock_js_in_footer );
158
+				}
147 159
 			}
148 160
 		} // END set_js_in_footer()
149 161
 
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.
includes/theme-support/class-alnp-twenty-ten.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_twentyten_template_redirect' ) );
32
+		add_filter('alnp_template_redirect', array(__CLASS__, 'alnp_twentyten_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_twentyten_template_redirect() {
46
-		return AUTO_LOAD_NEXT_POST_FILE_PATH . '/template/theme-support/twenty-ten/content-alnp.php';
46
+		return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/twenty-ten/content-alnp.php';
47 47
 	} // END alnp_twentyten_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'    => '#content',
59 59
 			'title_selector'       => 'h1.entry-title',
60 60
 			'navigation_container' => '#nav-below',
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-seventeen.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-twenty-fourteen.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'    => '.site-content',
45 45
 			'title_selector'       => 'h1.entry-title',
46 46
 			'navigation_container' => 'nav.post-navigation',
47 47
 			'comments_container'   => 'div#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.