@@ -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.post-wrap', |
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 |
@@ -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,10 +29,10 @@ discard block |
||
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 |
||
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/twentyten/content-alnp.php'; |
|
46 | + return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/twentyten/content-alnp.php'; |
|
47 | 47 | } // END alnp_twentyten_template_redirect() |
48 | 48 | |
49 | 49 | /** |
@@ -54,14 +54,14 @@ discard block |
||
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 |
@@ -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,16 +29,16 @@ discard block |
||
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 |
||
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">←</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">←</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 |
||
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/twentyeleven/content-alnp.php'; |
|
67 | + return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/twentyeleven/content-alnp.php'; |
|
68 | 68 | } // END alnp_twentyeleven_template_redirect() |
69 | 69 | |
70 | 70 | /** |
@@ -75,14 +75,14 @@ discard block |
||
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 |
@@ -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,10 +29,10 @@ 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 | |
34 | 34 | // Filters the repeater template location. |
35 | - add_filter( 'alnp_template_redirect', array( __CLASS__, 'alnp_make_template_redirect' ) ); |
|
35 | + add_filter('alnp_template_redirect', array(__CLASS__, 'alnp_make_template_redirect')); |
|
36 | 36 | } // END init() |
37 | 37 | |
38 | 38 | /** |
@@ -43,14 +43,14 @@ discard block |
||
43 | 43 | * @static |
44 | 44 | */ |
45 | 45 | public static function add_theme_support() { |
46 | - add_theme_support( 'auto-load-next-post', array( |
|
46 | + add_theme_support('auto-load-next-post', array( |
|
47 | 47 | 'content_container' => 'main.site-main', |
48 | 48 | 'title_selector' => 'h1.entry-title', |
49 | 49 | 'navigation_container' => 'nav.post-navigation', |
50 | 50 | 'comments_container' => 'section#comments', |
51 | 51 | 'load_js_in_footer' => 'no', |
52 | 52 | 'lock_js_in_footer' => 'no', |
53 | - ) ); |
|
53 | + )); |
|
54 | 54 | } // END add_theme_support() |
55 | 55 | |
56 | 56 | /** |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | * @return string |
62 | 62 | */ |
63 | 63 | public static function alnp_make_template_redirect() { |
64 | - return AUTO_LOAD_NEXT_POST_FILE_PATH . '/template/theme-support/twentynineteen/content-alnp.php'; |
|
64 | + return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/twentynineteen/content-alnp.php'; |
|
65 | 65 | } // END alnp_make_template_redirect() |
66 | 66 | |
67 | 67 | } // END class |
@@ -10,12 +10,12 @@ |
||
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="block credits"> |
18 | - <h4><?php esc_html_e( 'Created & maintained by', 'auto-load-next-post' ); ?></h4> |
|
18 | + <h4><?php esc_html_e('Created & maintained by', 'auto-load-next-post'); ?></h4> |
|
19 | 19 | <ul> |
20 | 20 | <li> |
21 | 21 | <a href="https://profiles.wordpress.org/sebd86" target="_blank"> |
@@ -9,18 +9,18 @@ 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 | -$uninstall = get_option( 'auto_load_next_post_uninstall_data' ); |
|
18 | +$uninstall = get_option('auto_load_next_post_uninstall_data'); |
|
19 | 19 | |
20 | -if ( ! empty( $uninstall ) ) { |
|
20 | +if ( ! empty($uninstall)) { |
|
21 | 21 | |
22 | 22 | // Make sure it is only a single site we are uninstalling from. |
23 | - if ( ! is_multisite() ) { |
|
23 | + if ( ! is_multisite()) { |
|
24 | 24 | // Delete options |
25 | 25 | $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'auto_load_next_post_%'"); |
26 | 26 | |
@@ -28,17 +28,17 @@ discard block |
||
28 | 28 | $wpdb->query("DELETE FROM $wpdb->usermeta WHERE meta_key LIKE 'auto_load_next_post_%'"); |
29 | 29 | |
30 | 30 | // Delete Uninstall Data - Just to double check it has been removed. |
31 | - delete_option( 'auto_load_next_post_uninstall_data' ); |
|
31 | + delete_option('auto_load_next_post_uninstall_data'); |
|
32 | 32 | |
33 | 33 | // Delete Install Date |
34 | - delete_option( 'auto_load_next_post_install_date' ); |
|
34 | + delete_option('auto_load_next_post_install_date'); |
|
35 | 35 | } |
36 | 36 | else { |
37 | 37 | // Delete Uninstall Data |
38 | - delete_site_option( 'auto_load_next_post_uninstall_data' ); |
|
38 | + delete_site_option('auto_load_next_post_uninstall_data'); |
|
39 | 39 | |
40 | 40 | // Delete Install Date |
41 | - delete_site_option( 'auto_load_next_post_install_date' ); |
|
41 | + delete_site_option('auto_load_next_post_install_date'); |
|
42 | 42 | } |
43 | 43 | } |
44 | 44 |
@@ -32,8 +32,7 @@ |
||
32 | 32 | |
33 | 33 | // Delete Install Date |
34 | 34 | delete_option( 'auto_load_next_post_install_date' ); |
35 | - } |
|
36 | - else { |
|
35 | + } else { |
|
37 | 36 | // Delete Uninstall Data |
38 | 37 | delete_site_option( 'auto_load_next_post_uninstall_data' ); |
39 | 38 |
@@ -1,4 +1,4 @@ |
||
1 | 1 | <?php |
2 | -defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' ); |
|
2 | +defined('ABSPATH') || die('Cheatin’ uh?'); |
|
3 | 3 | |
4 | -require AUTO_LOAD_NEXT_POST_3RD_PARTY . 'plugins/wp-rocket.php'; |
|
5 | 4 | \ No newline at end of file |
5 | +require AUTO_LOAD_NEXT_POST_3RD_PARTY.'plugins/wp-rocket.php'; |
|
6 | 6 | \ No newline at end of file |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | -defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' ); |
|
2 | +defined('ABSPATH') || die('Cheatin’ uh?'); |
|
3 | 3 | |
4 | -if ( defined( 'WP_ROCKET_VERSION' ) ) : |
|
4 | +if (defined('WP_ROCKET_VERSION')) : |
|
5 | 5 | /** |
6 | 6 | * Excludes Auto Load Next Post scripts from JS minification. |
7 | 7 | * |
@@ -9,16 +9,16 @@ discard block |
||
9 | 9 | * @param Array $excluded_js An array of JS handles enqueued in WordPress. |
10 | 10 | * @return Array $excluded_js the updated array of handles. |
11 | 11 | */ |
12 | - function rocket_exclude_js_alnp( $excluded_js ) { |
|
13 | - $excluded_js[] = str_replace( home_url(), '', plugins_url( '/auto-load-next-post/assets/js/frontend/auto-load-next-post.js' ) ); |
|
14 | - $excluded_js[] = str_replace( home_url(), '', plugins_url( '/auto-load-next-post/assets/js/frontend/auto-load-next-post.min.js' ) ); |
|
15 | - $excluded_js[] = str_replace( home_url(), '', plugins_url( '/auto-load-next-post/assets/js/frontend/auto-load-next-post.dev.js' ) ); |
|
16 | - $excluded_js[] = str_replace( home_url(), '', plugins_url( '/auto-load-next-post/assets/js/libs/jquery.history.js' ) ); |
|
17 | - $excluded_js[] = str_replace( home_url(), '', plugins_url( '/auto-load-next-post/assets/js/libs/scrollspy.min.js' ) ); |
|
12 | + function rocket_exclude_js_alnp($excluded_js) { |
|
13 | + $excluded_js[] = str_replace(home_url(), '', plugins_url('/auto-load-next-post/assets/js/frontend/auto-load-next-post.js')); |
|
14 | + $excluded_js[] = str_replace(home_url(), '', plugins_url('/auto-load-next-post/assets/js/frontend/auto-load-next-post.min.js')); |
|
15 | + $excluded_js[] = str_replace(home_url(), '', plugins_url('/auto-load-next-post/assets/js/frontend/auto-load-next-post.dev.js')); |
|
16 | + $excluded_js[] = str_replace(home_url(), '', plugins_url('/auto-load-next-post/assets/js/libs/jquery.history.js')); |
|
17 | + $excluded_js[] = str_replace(home_url(), '', plugins_url('/auto-load-next-post/assets/js/libs/scrollspy.min.js')); |
|
18 | 18 | |
19 | 19 | return $excluded_js; |
20 | 20 | } |
21 | - add_filter( 'rocket_exclude_js', 'rocket_exclude_js_alnp' ); |
|
21 | + add_filter('rocket_exclude_js', 'rocket_exclude_js_alnp'); |
|
22 | 22 | |
23 | 23 | /** |
24 | 24 | * Excludes Auto Load Next Post JS files from defer JS |
@@ -27,13 +27,13 @@ discard block |
||
27 | 27 | * @param Array $exclude_defer_js Array of JS filepaths to be excluded. |
28 | 28 | * @return Array $exclude_defer_js the updated array of defer JS |
29 | 29 | */ |
30 | - function rocket_exclude_defer_js_alnp( $exclude_defer_js ) { |
|
31 | - $exclude_defer_js[] = rocket_clean_exclude_file( AUTO_LOAD_NEXT_POST_URL_PATH . '/assets/js/frontend/auto-load-next-post.js' ); |
|
32 | - $exclude_defer_js[] = rocket_clean_exclude_file( AUTO_LOAD_NEXT_POST_URL_PATH . '/assets/js/frontend/auto-load-next-post.min.js' ); |
|
33 | - $exclude_defer_js[] = rocket_clean_exclude_file( AUTO_LOAD_NEXT_POST_URL_PATH . '/assets/js/frontend/auto-load-next-post.dev.js' ); |
|
30 | + function rocket_exclude_defer_js_alnp($exclude_defer_js) { |
|
31 | + $exclude_defer_js[] = rocket_clean_exclude_file(AUTO_LOAD_NEXT_POST_URL_PATH.'/assets/js/frontend/auto-load-next-post.js'); |
|
32 | + $exclude_defer_js[] = rocket_clean_exclude_file(AUTO_LOAD_NEXT_POST_URL_PATH.'/assets/js/frontend/auto-load-next-post.min.js'); |
|
33 | + $exclude_defer_js[] = rocket_clean_exclude_file(AUTO_LOAD_NEXT_POST_URL_PATH.'/assets/js/frontend/auto-load-next-post.dev.js'); |
|
34 | 34 | |
35 | 35 | return $exclude_defer_js; |
36 | 36 | } |
37 | - add_filter( 'rocket_exclude_defer_js', 'rocket_exclude_defer_js_alnp' ); |
|
37 | + add_filter('rocket_exclude_defer_js', 'rocket_exclude_defer_js_alnp'); |
|
38 | 38 | |
39 | 39 | endif; |
@@ -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 | |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | */ |
29 | 29 | public function __construct() { |
30 | 30 | // Update theme selectors if the theme was switched and it has theme support. |
31 | - add_action( 'after_switch_theme', array( $this, 'update_alnp_theme_selectors' ), 15, 2 ); |
|
31 | + add_action('after_switch_theme', array($this, 'update_alnp_theme_selectors'), 15, 2); |
|
32 | 32 | } // END __construct() |
33 | 33 | |
34 | 34 | /** |
@@ -37,17 +37,17 @@ discard block |
||
37 | 37 | * |
38 | 38 | * @access public |
39 | 39 | */ |
40 | - public function update_alnp_theme_selectors( $stylesheet = '', $old_theme = false ) { |
|
40 | + public function update_alnp_theme_selectors($stylesheet = '', $old_theme = false) { |
|
41 | 41 | // Check if Auto Load Next Post is supported before updating the theme selectors. |
42 | - if ( is_alnp_supported() ) { |
|
43 | - $theme_support = get_theme_support( 'auto-load-next-post' ); |
|
42 | + if (is_alnp_supported()) { |
|
43 | + $theme_support = get_theme_support('auto-load-next-post'); |
|
44 | 44 | |
45 | - if ( is_array( $theme_support ) ) { |
|
45 | + if (is_array($theme_support)) { |
|
46 | 46 | // Preferred implementation, where theme provides an array of options |
47 | - if ( isset( $theme_support[0] ) && is_array( $theme_support[0] ) ) { |
|
48 | - foreach( $theme_support[0] as $key => $value ) { |
|
49 | - if ( ! empty( $value ) ) { |
|
50 | - update_option( 'auto_load_next_post_' . $key, $value ); |
|
47 | + if (isset($theme_support[0]) && is_array($theme_support[0])) { |
|
48 | + foreach ($theme_support[0] as $key => $value) { |
|
49 | + if ( ! empty($value)) { |
|
50 | + update_option('auto_load_next_post_'.$key, $value); |
|
51 | 51 | } |
52 | 52 | } |
53 | 53 | } |