@@ -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,16 +37,16 @@ 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 ) ) 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)) update_option('auto_load_next_post_'.$key, $value); |
|
50 | 50 | } |
51 | 51 | } |
52 | 52 | } |
@@ -46,7 +46,9 @@ |
||
46 | 46 | // Preferred implementation, where theme provides an array of options |
47 | 47 | if ( isset( $theme_support[0] ) && is_array( $theme_support[0] ) ) { |
48 | 48 | foreach( $theme_support[0] as $key => $value ) { |
49 | - if ( ! empty( $value ) ) update_option( 'auto_load_next_post_' . $key, $value ); |
|
49 | + if ( ! empty( $value ) ) { |
|
50 | + update_option( 'auto_load_next_post_' . $key, $value ); |
|
51 | + } |
|
50 | 52 | } |
51 | 53 | } |
52 | 54 | } |
@@ -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,12 +40,12 @@ discard block |
||
40 | 40 | * @static |
41 | 41 | */ |
42 | 42 | public static function add_theme_support() { |
43 | - add_theme_support( 'auto-load-next-post', array( |
|
43 | + add_theme_support('auto-load-next-post', array( |
|
44 | 44 | 'content_container' => 'main.site-main', |
45 | 45 | 'title_selector' => 'h1.entry-title', |
46 | 46 | 'navigation_container' => 'nav.post-navigation', |
47 | 47 | 'comments_container' => 'section#comments', |
48 | - ) ); |
|
48 | + )); |
|
49 | 49 | } // END add_theme_support() |
50 | 50 | |
51 | 51 | } // END class |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly. |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public static function init() { |
31 | 31 | // Add theme support and preset the theme selectors. |
32 | - add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) ); |
|
32 | + add_action('after_setup_theme', array(__CLASS__, 'add_theme_support')); |
|
33 | 33 | } // END init() |
34 | 34 | |
35 | 35 | /** |
@@ -40,12 +40,12 @@ discard block |
||
40 | 40 | * @static |
41 | 41 | */ |
42 | 42 | public static function add_theme_support() { |
43 | - add_theme_support( 'auto-load-next-post', array( |
|
43 | + add_theme_support('auto-load-next-post', array( |
|
44 | 44 | 'content_container' => 'main.site-main', |
45 | 45 | 'title_selector' => 'h1.entry-title', |
46 | 46 | 'navigation_container' => 'nav.post-navigation', |
47 | 47 | 'comments_container' => 'section#comments', |
48 | - ) ); |
|
48 | + )); |
|
49 | 49 | } // END add_theme_support() |
50 | 50 | |
51 | 51 | } // END class |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | */ |
14 | 14 | |
15 | 15 | // Exit if accessed directly. |
16 | -if ( ! defined( 'ABSPATH' ) ) { |
|
16 | +if ( ! defined('ABSPATH')) { |
|
17 | 17 | exit; |
18 | 18 | } |
19 | 19 | |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | global $wp_query; |
30 | 30 | |
31 | 31 | // If this is not a request for alnp or a singular object then bail |
32 | - if ( ! isset( $wp_query->query_vars['alnp'] ) || ! is_singular() ) { |
|
32 | + if ( ! isset($wp_query->query_vars['alnp']) || ! is_singular()) { |
|
33 | 33 | return; |
34 | 34 | } |
35 | 35 | |
@@ -38,27 +38,27 @@ discard block |
||
38 | 38 | * If theme does not have a template file for Auto Load Next Post, |
39 | 39 | * the plugin will load a default template. |
40 | 40 | */ |
41 | - $child_path = get_stylesheet_directory() . '/' . AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
42 | - $template_path = get_template_directory() . '/' . AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
41 | + $child_path = get_stylesheet_directory().'/'.AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
42 | + $template_path = get_template_directory().'/'.AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
43 | 43 | $default_path = AUTO_LOAD_NEXT_POST_FILE_PATH; |
44 | 44 | |
45 | - if ( file_exists( $child_path . 'content-alnp.php' ) ) { |
|
46 | - $template_redirect = $child_path . 'content-alnp.php'; |
|
45 | + if (file_exists($child_path.'content-alnp.php')) { |
|
46 | + $template_redirect = $child_path.'content-alnp.php'; |
|
47 | 47 | } |
48 | - else if( file_exists( $template_path . 'content-alnp.php') ) { |
|
49 | - $template_redirect = $template_path . 'content-alnp.php'; |
|
48 | + else if (file_exists($template_path.'content-alnp.php')) { |
|
49 | + $template_redirect = $template_path.'content-alnp.php'; |
|
50 | 50 | } |
51 | - else if( file_exists( $default_path . '/template/content-alnp.php' ) ) { |
|
52 | - $template_redirect = $default_path . '/template/content-alnp.php'; |
|
51 | + else if (file_exists($default_path.'/template/content-alnp.php')) { |
|
52 | + $template_redirect = $default_path.'/template/content-alnp.php'; |
|
53 | 53 | } |
54 | 54 | |
55 | - $template_redirect = apply_filters( 'alnp_template_redirect', $template_redirect ); |
|
55 | + $template_redirect = apply_filters('alnp_template_redirect', $template_redirect); |
|
56 | 56 | |
57 | - include( $template_redirect ); |
|
57 | + include($template_redirect); |
|
58 | 58 | |
59 | 59 | exit; |
60 | 60 | } |
61 | -add_action( 'template_redirect', 'auto_load_next_post_template_redirect' ); |
|
61 | +add_action('template_redirect', 'auto_load_next_post_template_redirect'); |
|
62 | 62 | |
63 | 63 | /** |
64 | 64 | * Adds the comments template after the post content. |
@@ -68,11 +68,11 @@ discard block |
||
68 | 68 | */ |
69 | 69 | function auto_load_next_post_comments() { |
70 | 70 | // If comments are open or we have at least one comment, load up the comment template. |
71 | - if ( comments_open() || get_comments_number() ) : |
|
71 | + if (comments_open() || get_comments_number()) : |
|
72 | 72 | comments_template(); |
73 | 73 | endif; |
74 | 74 | } |
75 | -add_action( 'alnp_load_after_content', 'auto_load_next_post_comments', 1, 5 ); |
|
75 | +add_action('alnp_load_after_content', 'auto_load_next_post_comments', 1, 5); |
|
76 | 76 | |
77 | 77 | /** |
78 | 78 | * Adds the post navigation for the previous link only after the post content. |
@@ -83,8 +83,8 @@ discard block |
||
83 | 83 | function auto_load_next_post_navigation() { |
84 | 84 | ?> |
85 | 85 | <nav class="navigation post-navigation" role="navigation"> |
86 | - <span class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'auto-load-next-post' ) . '</span> %title' ); ?></span> |
|
86 | + <span class="nav-previous"><?php previous_post_link('%link', '<span class="meta-nav">'._x('←', 'Previous post link', 'auto-load-next-post').'</span> %title'); ?></span> |
|
87 | 87 | </nav> |
88 | 88 | <?php |
89 | 89 | } |
90 | -add_action( 'alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10 ); |
|
90 | +add_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10); |
@@ -44,11 +44,9 @@ |
||
44 | 44 | |
45 | 45 | if ( file_exists( $child_path . 'content-alnp.php' ) ) { |
46 | 46 | $template_redirect = $child_path . 'content-alnp.php'; |
47 | - } |
|
48 | - else if( file_exists( $template_path . 'content-alnp.php') ) { |
|
47 | + } else if( file_exists( $template_path . 'content-alnp.php') ) { |
|
49 | 48 | $template_redirect = $template_path . 'content-alnp.php'; |
50 | - } |
|
51 | - else if( file_exists( $default_path . '/template/content-alnp.php' ) ) { |
|
49 | + } else if( file_exists( $default_path . '/template/content-alnp.php' ) ) { |
|
52 | 50 | $template_redirect = $default_path . '/template/content-alnp.php'; |
53 | 51 | } |
54 | 52 |
@@ -12,11 +12,11 @@ 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 | |
19 | -if ( ! class_exists( 'Auto_Load_Next_Post_Autoloader' ) ) { |
|
19 | +if ( ! class_exists('Auto_Load_Next_Post_Autoloader')) { |
|
20 | 20 | |
21 | 21 | class Auto_Load_Next_Post_Autoloader { |
22 | 22 | |
@@ -32,13 +32,13 @@ discard block |
||
32 | 32 | * The Constructor. |
33 | 33 | */ |
34 | 34 | public function __construct() { |
35 | - if ( function_exists( '__autoload' ) ) { |
|
36 | - spl_autoload_register( '__autoload' ); |
|
35 | + if (function_exists('__autoload')) { |
|
36 | + spl_autoload_register('__autoload'); |
|
37 | 37 | } |
38 | 38 | |
39 | - spl_autoload_register( array( $this, 'autoload' ) ); |
|
39 | + spl_autoload_register(array($this, 'autoload')); |
|
40 | 40 | |
41 | - $this->include_path = untrailingslashit( plugin_dir_path( AUTO_LOAD_NEXT_POST_FILE ) ) . '/includes/'; |
|
41 | + $this->include_path = untrailingslashit(plugin_dir_path(AUTO_LOAD_NEXT_POST_FILE)).'/includes/'; |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -48,8 +48,8 @@ discard block |
||
48 | 48 | * @param string $class Class name. |
49 | 49 | * @return string |
50 | 50 | */ |
51 | - private function get_file_name_from_class( $class ) { |
|
52 | - return 'class-' . str_replace( '_', '-', $class ) . '.php'; |
|
51 | + private function get_file_name_from_class($class) { |
|
52 | + return 'class-'.str_replace('_', '-', $class).'.php'; |
|
53 | 53 | } // END get_file_name_from_class() |
54 | 54 | |
55 | 55 | /** |
@@ -59,8 +59,8 @@ discard block |
||
59 | 59 | * @param string $path File path. |
60 | 60 | * @return bool Successful or not. |
61 | 61 | */ |
62 | - private function load_file( $path ) { |
|
63 | - if ( $path && is_readable( $path ) ) { |
|
62 | + private function load_file($path) { |
|
63 | + if ($path && is_readable($path)) { |
|
64 | 64 | include_once $path; |
65 | 65 | return true; |
66 | 66 | } |
@@ -73,22 +73,22 @@ discard block |
||
73 | 73 | * @access public |
74 | 74 | * @param string $class Class name. |
75 | 75 | */ |
76 | - public function autoload( $class ) { |
|
77 | - $class = strtolower( $class ); |
|
76 | + public function autoload($class) { |
|
77 | + $class = strtolower($class); |
|
78 | 78 | |
79 | - if ( 0 !== strpos( $class, 'alnp_' ) ) { |
|
79 | + if (0 !== strpos($class, 'alnp_')) { |
|
80 | 80 | return; |
81 | 81 | } |
82 | 82 | |
83 | - $file = $this->get_file_name_from_class( $class ); |
|
83 | + $file = $this->get_file_name_from_class($class); |
|
84 | 84 | $path = ''; |
85 | 85 | |
86 | - if ( 0 === strpos( $class, 'alnp_admin' ) ) { |
|
87 | - $path = $this->include_path . 'admin/'; |
|
86 | + if (0 === strpos($class, 'alnp_admin')) { |
|
87 | + $path = $this->include_path.'admin/'; |
|
88 | 88 | } |
89 | 89 | |
90 | - if ( empty( $path ) || ! $this->load_file( $path . $file ) ) { |
|
91 | - $this->load_file( $this->include_path . $file ); |
|
90 | + if (empty($path) || ! $this->load_file($path.$file)) { |
|
91 | + $this->load_file($this->include_path.$file); |
|
92 | 92 | } |
93 | 93 | } // END autoload() |
94 | 94 |
@@ -14,11 +14,11 @@ discard block |
||
14 | 14 | */ |
15 | 15 | |
16 | 16 | // Exit if accessed directly. |
17 | -if ( ! defined( 'ABSPATH' ) ) { |
|
17 | +if ( ! defined('ABSPATH')) { |
|
18 | 18 | exit; |
19 | 19 | } |
20 | 20 | |
21 | -if ( ! function_exists( 'auto_load_next_post_is_ajax' ) ) { |
|
21 | +if ( ! function_exists('auto_load_next_post_is_ajax')) { |
|
22 | 22 | /** |
23 | 23 | * Returns true when the page is loaded via ajax. |
24 | 24 | * |
@@ -27,15 +27,15 @@ discard block |
||
27 | 27 | * @return bool |
28 | 28 | */ |
29 | 29 | function auto_load_next_post_is_ajax() { |
30 | - if ( defined( 'DOING_AJAX' ) ) { |
|
30 | + if (defined('DOING_AJAX')) { |
|
31 | 31 | return true; |
32 | 32 | } |
33 | 33 | |
34 | - return( isset( $_SERVER['HTTP_X_REQUESTED_WITH'] ) && strtolower( $_SERVER['HTTP_X_REQUESTED_WITH'] ) == 'xmlhttprequest' ) ? true : false; |
|
34 | + return(isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') ? true : false; |
|
35 | 35 | } // END auto_load_next_post_is_ajax |
36 | 36 | } |
37 | 37 | |
38 | -if ( ! function_exists( 'alnp_template_location' ) ) { |
|
38 | +if ( ! function_exists('alnp_template_location')) { |
|
39 | 39 | /** |
40 | 40 | * Filters the template location for get_template_part(). |
41 | 41 | * |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | function alnp_template_location() { |
48 | 48 | $current_theme = get_option('template'); |
49 | 49 | |
50 | - switch( $current_theme ) { |
|
50 | + switch ($current_theme) { |
|
51 | 51 | case 'twentyseventeen': |
52 | 52 | $path = 'template-parts/post/'; |
53 | 53 | break; |
@@ -61,11 +61,11 @@ discard block |
||
61 | 61 | break; |
62 | 62 | } |
63 | 63 | |
64 | - return apply_filters( 'alnp_template_location', $path ); |
|
64 | + return apply_filters('alnp_template_location', $path); |
|
65 | 65 | } // END alnp_template_location() |
66 | 66 | } |
67 | 67 | |
68 | -if ( ! function_exists( 'is_alnp_pro_version_installed' ) ) { |
|
68 | +if ( ! function_exists('is_alnp_pro_version_installed')) { |
|
69 | 69 | /** |
70 | 70 | * Detects if Auto Load Next Post Pro is installed. |
71 | 71 | * |
@@ -74,17 +74,17 @@ discard block |
||
74 | 74 | * @return boolean |
75 | 75 | */ |
76 | 76 | function is_alnp_pro_version_installed() { |
77 | - $active_plugins = (array) get_option( 'active_plugins', array() ); |
|
77 | + $active_plugins = (array) get_option('active_plugins', array()); |
|
78 | 78 | |
79 | - if ( is_multisite() ) { |
|
80 | - $active_plugins = array_merge( $active_plugins, get_site_option( 'active_sitewide_plugins', array() ) ); |
|
79 | + if (is_multisite()) { |
|
80 | + $active_plugins = array_merge($active_plugins, get_site_option('active_sitewide_plugins', array())); |
|
81 | 81 | } |
82 | 82 | |
83 | - return in_array( 'auto-load-next-post-pro/auto-load-next-post-pro.php', $active_plugins ) || array_key_exists( 'auto-load-next-post-pro/auto-load-next-post-pro.php', $active_plugins ); |
|
83 | + return in_array('auto-load-next-post-pro/auto-load-next-post-pro.php', $active_plugins) || array_key_exists('auto-load-next-post-pro/auto-load-next-post-pro.php', $active_plugins); |
|
84 | 84 | } |
85 | 85 | } |
86 | 86 | |
87 | -if ( ! function_exists( 'is_alnp_beta' ) ) { |
|
87 | +if ( ! function_exists('is_alnp_beta')) { |
|
88 | 88 | /** |
89 | 89 | * Returns true if Auto Load Next Post is a beta release. |
90 | 90 | * |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | * @return boolean |
93 | 93 | */ |
94 | 94 | function is_alnp_beta() { |
95 | - if ( strpos( AUTO_LOAD_NEXT_POST_VERSION, 'beta' ) ) { |
|
95 | + if (strpos(AUTO_LOAD_NEXT_POST_VERSION, 'beta')) { |
|
96 | 96 | return true; |
97 | 97 | } |
98 | 98 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | } |
101 | 101 | } |
102 | 102 | |
103 | -if ( ! function_exists( 'is_alnp_active_theme' ) ) { |
|
103 | +if ( ! function_exists('is_alnp_active_theme')) { |
|
104 | 104 | /** |
105 | 105 | * See if theme/s is activate or not. |
106 | 106 | * |
@@ -108,12 +108,12 @@ discard block |
||
108 | 108 | * @param string|array $theme Theme name or array of theme names to check. |
109 | 109 | * @return boolean |
110 | 110 | */ |
111 | - function is_alnp_active_theme( $theme ) { |
|
112 | - return is_array( $theme ) ? in_array( get_template(), $theme, true ) : get_template() === $theme; |
|
111 | + function is_alnp_active_theme($theme) { |
|
112 | + return is_array($theme) ? in_array(get_template(), $theme, true) : get_template() === $theme; |
|
113 | 113 | } |
114 | 114 | } |
115 | 115 | |
116 | -if ( ! function_exists( 'is_alnp_supported' ) ) { |
|
116 | +if ( ! function_exists('is_alnp_supported')) { |
|
117 | 117 | /** |
118 | 118 | * Returns true if Auto Load Next Post is supported in the theme. |
119 | 119 | * |
@@ -121,9 +121,9 @@ discard block |
||
121 | 121 | * @return boolean |
122 | 122 | */ |
123 | 123 | function is_alnp_supported() { |
124 | - $theme_support = current_theme_supports( 'auto-load-next-post' ); |
|
124 | + $theme_support = current_theme_supports('auto-load-next-post'); |
|
125 | 125 | |
126 | - if ( ! $theme_support ) { |
|
126 | + if ( ! $theme_support) { |
|
127 | 127 | return false; |
128 | 128 | } |
129 | 129 | |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | } |
132 | 132 | } |
133 | 133 | |
134 | -if ( ! function_exists( 'alnp_get_theme_support' ) ) { |
|
134 | +if ( ! function_exists('alnp_get_theme_support')) { |
|
135 | 135 | /** |
136 | 136 | * Return "theme support" values from the current theme, if set. |
137 | 137 | * |
@@ -140,25 +140,25 @@ discard block |
||
140 | 140 | * @param mixed $default Optional value to return if the theme does not declare support for a prop. |
141 | 141 | * @return mixed Value of prop(s). |
142 | 142 | */ |
143 | - function alnp_get_theme_support( $prop = '', $default = null ) { |
|
144 | - $theme_support = get_theme_support( 'auto-load-next-post' ); |
|
145 | - $theme_support = is_array( $theme_support ) ? $theme_support[0] : false; |
|
143 | + function alnp_get_theme_support($prop = '', $default = null) { |
|
144 | + $theme_support = get_theme_support('auto-load-next-post'); |
|
145 | + $theme_support = is_array($theme_support) ? $theme_support[0] : false; |
|
146 | 146 | |
147 | - if ( ! $theme_support ) { |
|
147 | + if ( ! $theme_support) { |
|
148 | 148 | return $default; |
149 | 149 | } |
150 | 150 | |
151 | - if ( ! empty( $prop ) ) { |
|
152 | - $prop_stack = explode( '::', $prop ); |
|
153 | - $prop_key = array_shift( $prop_stack ); |
|
151 | + if ( ! empty($prop)) { |
|
152 | + $prop_stack = explode('::', $prop); |
|
153 | + $prop_key = array_shift($prop_stack); |
|
154 | 154 | |
155 | - if ( isset( $theme_support[ $prop_key ] ) ) { |
|
156 | - $value = $theme_support[ $prop_key ]; |
|
155 | + if (isset($theme_support[$prop_key])) { |
|
156 | + $value = $theme_support[$prop_key]; |
|
157 | 157 | |
158 | - if ( count( $prop_stack ) ) { |
|
159 | - foreach ( $prop_stack as $prop_key ) { |
|
160 | - if ( is_array( $value ) && isset( $value[ $prop_key ] ) ) { |
|
161 | - $value = $value[ $prop_key ]; |
|
158 | + if (count($prop_stack)) { |
|
159 | + foreach ($prop_stack as $prop_key) { |
|
160 | + if (is_array($value) && isset($value[$prop_key])) { |
|
161 | + $value = $value[$prop_key]; |
|
162 | 162 | } else { |
163 | 163 | $value = $default; |
164 | 164 | break; |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | } |
177 | 177 | } |
178 | 178 | |
179 | -if ( ! function_exists( 'alnp_is_bot' ) ) { |
|
179 | +if ( ! function_exists('alnp_is_bot')) { |
|
180 | 180 | /** |
181 | 181 | * Was the current request made by a known bot? |
182 | 182 | * |
@@ -184,13 +184,13 @@ discard block |
||
184 | 184 | * @return boolean |
185 | 185 | */ |
186 | 186 | function alnp_is_bot() { |
187 | - $is_bot = alnp_is_bot_user_agent( $_SERVER['HTTP_USER_AGENT'] ); |
|
187 | + $is_bot = alnp_is_bot_user_agent($_SERVER['HTTP_USER_AGENT']); |
|
188 | 188 | |
189 | 189 | return $is_bot; |
190 | 190 | } |
191 | 191 | } |
192 | 192 | |
193 | -if ( ! function_exists( 'alnp_is_bot_user_agent' ) ) { |
|
193 | +if ( ! function_exists('alnp_is_bot_user_agent')) { |
|
194 | 194 | /** |
195 | 195 | * Is the given user-agent a known bot? |
196 | 196 | * |
@@ -198,8 +198,8 @@ discard block |
||
198 | 198 | * @param string A user-agent string |
199 | 199 | * @return boolean |
200 | 200 | */ |
201 | - function alnp_is_bot_user_agent( $ua = null ) { |
|
202 | - if ( empty( $ua ) ) { |
|
201 | + function alnp_is_bot_user_agent($ua = null) { |
|
202 | + if (empty($ua)) { |
|
203 | 203 | return false; |
204 | 204 | } |
205 | 205 | |
@@ -213,8 +213,8 @@ discard block |
||
213 | 213 | 'livelapbot', 'germcrawler', 'domaintunocrawler', 'grapeshotcrawler', 'cloudflare-alwaysonline', |
214 | 214 | ); |
215 | 215 | |
216 | - foreach ( $bot_agents as $bot_agent ) { |
|
217 | - if ( false !== stripos( $ua, $bot_agent ) ) { |
|
216 | + foreach ($bot_agents as $bot_agent) { |
|
217 | + if (false !== stripos($ua, $bot_agent)) { |
|
218 | 218 | return true; |
219 | 219 | } |
220 | 220 | } |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | } |
224 | 224 | } |
225 | 225 | |
226 | -if ( ! function_exists( 'alnp_get_post_type' ) ) { |
|
226 | +if ( ! function_exists('alnp_get_post_type')) { |
|
227 | 227 | /** |
228 | 228 | * Returns the post type. |
229 | 229 | * |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | $post_type = get_post_type(); |
236 | 236 | |
237 | 237 | // If the post type is a post then return single instead. |
238 | - if ( $post_type == 'post' ) { |
|
238 | + if ($post_type == 'post') { |
|
239 | 239 | return 'single'; |
240 | 240 | } |
241 | 241 |
@@ -11,11 +11,11 @@ discard block |
||
11 | 11 | */ |
12 | 12 | |
13 | 13 | // Exit if accessed directly. |
14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
14 | +if ( ! defined('ABSPATH')) { |
|
15 | 15 | exit; |
16 | 16 | } |
17 | 17 | |
18 | -if ( ! class_exists( 'Auto_Load_Next_Post_Install' ) ) { |
|
18 | +if ( ! class_exists('Auto_Load_Next_Post_Install')) { |
|
19 | 19 | |
20 | 20 | class Auto_Load_Next_Post_Install { |
21 | 21 | |
@@ -36,11 +36,11 @@ discard block |
||
36 | 36 | * @access public |
37 | 37 | */ |
38 | 38 | public function __construct() { |
39 | - add_action( 'init', array( __CLASS__, 'add_rewrite_endpoint' ), 0 ); |
|
40 | - add_action( 'init', array( __CLASS__, 'check_version' ), 5 ); |
|
39 | + add_action('init', array(__CLASS__, 'add_rewrite_endpoint'), 0); |
|
40 | + add_action('init', array(__CLASS__, 'check_version'), 5); |
|
41 | 41 | |
42 | 42 | // Get plugin version. |
43 | - self::$current_version = get_option( 'auto_load_next_post_version', null ); |
|
43 | + self::$current_version = get_option('auto_load_next_post_version', null); |
|
44 | 44 | } // END __construct() |
45 | 45 | |
46 | 46 | /** |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | * @since 1.4.10 |
54 | 54 | */ |
55 | 55 | public static function check_version() { |
56 | - if ( ! defined( 'IFRAME_REQUEST' ) && version_compare( self::$current_version, AUTO_LOAD_NEXT_POST_VERSION, '<' ) ) { |
|
56 | + if ( ! defined('IFRAME_REQUEST') && version_compare(self::$current_version, AUTO_LOAD_NEXT_POST_VERSION, '<')) { |
|
57 | 57 | self::install(); |
58 | - do_action( 'auto_load_next_post_updated' ); |
|
58 | + do_action('auto_load_next_post_updated'); |
|
59 | 59 | } |
60 | 60 | } // END check_version() |
61 | 61 | |
@@ -68,19 +68,19 @@ discard block |
||
68 | 68 | * @version 1.5.0 |
69 | 69 | */ |
70 | 70 | public static function install() { |
71 | - if ( ! is_blog_installed() ) { |
|
71 | + if ( ! is_blog_installed()) { |
|
72 | 72 | return; |
73 | 73 | } |
74 | 74 | |
75 | 75 | // Check if we are not already running this routine. |
76 | - if ( 'yes' === get_transient( 'alnp_installing' ) ) { |
|
76 | + if ('yes' === get_transient('alnp_installing')) { |
|
77 | 77 | return; |
78 | 78 | } |
79 | 79 | |
80 | 80 | // If we made it till here nothing is running yet, lets set the transient now for five minutes. |
81 | - set_transient( 'alnp_installing', 'yes', MINUTE_IN_SECONDS * 5 ); |
|
82 | - if ( ! defined( 'AUTO_LOAD_NEXT_POST_INSTALLING' ) ) { |
|
83 | - define( 'AUTO_LOAD_NEXT_POST_INSTALLING', true ); |
|
81 | + set_transient('alnp_installing', 'yes', MINUTE_IN_SECONDS * 5); |
|
82 | + if ( ! defined('AUTO_LOAD_NEXT_POST_INSTALLING')) { |
|
83 | + define('AUTO_LOAD_NEXT_POST_INSTALLING', true); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | // Add default options. |
@@ -98,9 +98,9 @@ discard block |
||
98 | 98 | // Refresh rewrite rules. |
99 | 99 | self::flush_rewrite_rules(); |
100 | 100 | |
101 | - delete_transient( 'alnp_installing' ); |
|
101 | + delete_transient('alnp_installing'); |
|
102 | 102 | |
103 | - do_action( 'alnp_installed' ); |
|
103 | + do_action('alnp_installed'); |
|
104 | 104 | } // END install() |
105 | 105 | |
106 | 106 | /** |
@@ -112,16 +112,16 @@ discard block |
||
112 | 112 | * @since 1.5.0 |
113 | 113 | */ |
114 | 114 | private static function set_theme_selectors() { |
115 | - if ( is_alnp_supported() ) { |
|
116 | - $content_container = alnp_get_theme_support( 'content_container' ); |
|
117 | - $title_selector = alnp_get_theme_support( 'title_selector' ); |
|
118 | - $navigation_container = alnp_get_theme_support( 'navigation_container' ); |
|
119 | - $comments_container = alnp_get_theme_support( 'comments_container' ); |
|
120 | - |
|
121 | - if ( ! empty( $content_container ) ) update_option( 'auto_load_next_post_content_container', $content_container ); |
|
122 | - if ( ! empty( $title_selector ) ) update_option( 'auto_load_next_post_title_selector', $title_selector ); |
|
123 | - if ( ! empty( $navigation_container ) ) update_option( 'auto_load_next_post_navigation_container', $navigation_container ); |
|
124 | - if ( ! empty( $comments_container ) ) update_option( 'auto_load_next_post_comments_container', $comments_container ); |
|
115 | + if (is_alnp_supported()) { |
|
116 | + $content_container = alnp_get_theme_support('content_container'); |
|
117 | + $title_selector = alnp_get_theme_support('title_selector'); |
|
118 | + $navigation_container = alnp_get_theme_support('navigation_container'); |
|
119 | + $comments_container = alnp_get_theme_support('comments_container'); |
|
120 | + |
|
121 | + if ( ! empty($content_container)) update_option('auto_load_next_post_content_container', $content_container); |
|
122 | + if ( ! empty($title_selector)) update_option('auto_load_next_post_title_selector', $title_selector); |
|
123 | + if ( ! empty($navigation_container)) update_option('auto_load_next_post_navigation_container', $navigation_container); |
|
124 | + if ( ! empty($comments_container)) update_option('auto_load_next_post_comments_container', $comments_container); |
|
125 | 125 | } |
126 | 126 | } // END set_theme_selectors() |
127 | 127 | |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | * @static |
133 | 133 | */ |
134 | 134 | private static function update_version() { |
135 | - update_option( 'auto_load_next_post_version', AUTO_LOAD_NEXT_POST_VERSION ); |
|
135 | + update_option('auto_load_next_post_version', AUTO_LOAD_NEXT_POST_VERSION); |
|
136 | 136 | } // END update_version() |
137 | 137 | |
138 | 138 | /** |
@@ -144,13 +144,13 @@ discard block |
||
144 | 144 | * @version 1.5.0 |
145 | 145 | */ |
146 | 146 | public static function set_install_date() { |
147 | - $install_date = get_site_option( 'auto_load_next_post_install_date' ); |
|
147 | + $install_date = get_site_option('auto_load_next_post_install_date'); |
|
148 | 148 | |
149 | 149 | // If ALNP was installed before but the install date was not converted to time then convert it. |
150 | - if ( ! empty( $install_date ) && !intval( $install_date ) ) { |
|
151 | - update_site_option( 'auto_load_next_post_install_date', strtotime( $install_date ) ); |
|
150 | + if ( ! empty($install_date) && ! intval($install_date)) { |
|
151 | + update_site_option('auto_load_next_post_install_date', strtotime($install_date)); |
|
152 | 152 | } else { |
153 | - add_site_option( 'auto_load_next_post_install_date', time() ); |
|
153 | + add_site_option('auto_load_next_post_install_date', time()); |
|
154 | 154 | } |
155 | 155 | } // END set_install_date() |
156 | 156 | |
@@ -165,15 +165,15 @@ discard block |
||
165 | 165 | */ |
166 | 166 | public static function create_options() { |
167 | 167 | // Include settings so that we can run through defaults |
168 | - include_once( dirname( __FILE__ ) . '/admin/class-auto-load-next-post-admin-settings.php' ); |
|
168 | + include_once(dirname(__FILE__).'/admin/class-auto-load-next-post-admin-settings.php'); |
|
169 | 169 | |
170 | 170 | $settings = Auto_Load_Next_Post_Admin_Settings::get_settings_pages(); |
171 | 171 | |
172 | - foreach ( $settings as $section ) { |
|
173 | - foreach ( $section->get_settings() as $value ) { |
|
174 | - if ( isset( $value['default'] ) && isset( $value['id'] ) ) { |
|
175 | - $autoload = isset( $value['autoload'] ) ? (bool) $value['autoload'] : true; |
|
176 | - add_option( $value['id'], $value['default'], '', ( $autoload ? 'yes' : 'no' ) ); |
|
172 | + foreach ($settings as $section) { |
|
173 | + foreach ($section->get_settings() as $value) { |
|
174 | + if (isset($value['default']) && isset($value['id'])) { |
|
175 | + $autoload = isset($value['autoload']) ? (bool) $value['autoload'] : true; |
|
176 | + add_option($value['id'], $value['default'], '', ($autoload ? 'yes' : 'no')); |
|
177 | 177 | } |
178 | 178 | } |
179 | 179 | } |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | * @version 1.5.0 |
189 | 189 | */ |
190 | 190 | public static function add_rewrite_endpoint() { |
191 | - add_rewrite_endpoint( 'alnp', EP_PERMALINK ); |
|
191 | + add_rewrite_endpoint('alnp', EP_PERMALINK); |
|
192 | 192 | } // END add_rewrite_endpoint() |
193 | 193 | |
194 | 194 | /** |
@@ -118,10 +118,18 @@ |
||
118 | 118 | $navigation_container = alnp_get_theme_support( 'navigation_container' ); |
119 | 119 | $comments_container = alnp_get_theme_support( 'comments_container' ); |
120 | 120 | |
121 | - if ( ! empty( $content_container ) ) update_option( 'auto_load_next_post_content_container', $content_container ); |
|
122 | - if ( ! empty( $title_selector ) ) update_option( 'auto_load_next_post_title_selector', $title_selector ); |
|
123 | - if ( ! empty( $navigation_container ) ) update_option( 'auto_load_next_post_navigation_container', $navigation_container ); |
|
124 | - if ( ! empty( $comments_container ) ) update_option( 'auto_load_next_post_comments_container', $comments_container ); |
|
121 | + if ( ! empty( $content_container ) ) { |
|
122 | + update_option( 'auto_load_next_post_content_container', $content_container ); |
|
123 | + } |
|
124 | + if ( ! empty( $title_selector ) ) { |
|
125 | + update_option( 'auto_load_next_post_title_selector', $title_selector ); |
|
126 | + } |
|
127 | + if ( ! empty( $navigation_container ) ) { |
|
128 | + update_option( 'auto_load_next_post_navigation_container', $navigation_container ); |
|
129 | + } |
|
130 | + if ( ! empty( $comments_container ) ) { |
|
131 | + update_option( 'auto_load_next_post_comments_container', $comments_container ); |
|
132 | + } |
|
125 | 133 | } |
126 | 134 | } // END set_theme_selectors() |
127 | 135 |
@@ -10,11 +10,11 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | -if ( !class_exists( 'Auto_Load_Next_Post_Customizer' ) ) { |
|
17 | +if ( ! class_exists('Auto_Load_Next_Post_Customizer')) { |
|
18 | 18 | |
19 | 19 | class Auto_Load_Next_Post_Customizer { |
20 | 20 | |
@@ -25,8 +25,8 @@ discard block |
||
25 | 25 | * @access public |
26 | 26 | */ |
27 | 27 | public function __construct() { |
28 | - add_action( 'customize_register', array( $this, 'alnp_init_customizer' ), 50 ); |
|
29 | - add_filter( 'customize_loaded_components', array( $this, 'alnp_remove_widgets_panel' ) ); |
|
28 | + add_action('customize_register', array($this, 'alnp_init_customizer'), 50); |
|
29 | + add_filter('customize_loaded_components', array($this, 'alnp_remove_widgets_panel')); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
@@ -36,17 +36,17 @@ discard block |
||
36 | 36 | * @since 1.5.0 |
37 | 37 | * @param WP_Customize_Manager $wp_customize The Customizer object. |
38 | 38 | */ |
39 | - public function alnp_init_customizer( $wp_customize ) { |
|
39 | + public function alnp_init_customizer($wp_customize) { |
|
40 | 40 | /** |
41 | 41 | * Dont add settings to the customizer if the user does |
42 | 42 | * not have permission to make changes to the theme. |
43 | 43 | */ |
44 | - if ( ! current_user_can( 'edit_theme_options' ) ) { |
|
44 | + if ( ! current_user_can('edit_theme_options')) { |
|
45 | 45 | return; |
46 | 46 | } |
47 | 47 | |
48 | 48 | // Auto Load Next Post Panel. |
49 | - $panel = array( 'panel' => 'alnp' ); |
|
49 | + $panel = array('panel' => 'alnp'); |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * Add the main panel and sections. |
@@ -55,11 +55,11 @@ discard block |
||
55 | 55 | */ |
56 | 56 | $wp_customize->add_panel( |
57 | 57 | 'alnp', array( |
58 | - 'title' => esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), |
|
58 | + 'title' => esc_html__('Auto Load Next Post', 'auto-load-next-post'), |
|
59 | 59 | 'capability' => 'edit_theme_options', |
60 | - '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' ), |
|
60 | + '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'), |
|
61 | 61 | 'priority' => 160, |
62 | - 'active_callback' => array( $this, 'is_page_alnp_ready' ) |
|
62 | + 'active_callback' => array($this, 'is_page_alnp_ready') |
|
63 | 63 | ) |
64 | 64 | ); |
65 | 65 | |
@@ -67,24 +67,24 @@ discard block |
||
67 | 67 | $sections = $this->alnp_get_customizer_sections(); |
68 | 68 | |
69 | 69 | // Add each section. |
70 | - foreach ( $sections as $section => $args ) { |
|
70 | + foreach ($sections as $section => $args) { |
|
71 | 71 | /** |
72 | 72 | * If we are not only viewing Auto Load Next Post customizer sections |
73 | 73 | * then move them under our own panel. |
74 | 74 | */ |
75 | - if ( ! $this->alnp_is_customizer() ) { |
|
76 | - $args = array_merge( $args, $panel ); |
|
75 | + if ( ! $this->alnp_is_customizer()) { |
|
76 | + $args = array_merge($args, $panel); |
|
77 | 77 | } |
78 | 78 | |
79 | - $wp_customize->add_section( $section, $args ); |
|
79 | + $wp_customize->add_section($section, $args); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | // Get plugin settings. |
83 | 83 | $settings = $this->alnp_get_customizer_settings(); |
84 | 84 | |
85 | 85 | // Add each setting. |
86 | - foreach ( $settings as $setting => $args ) { |
|
87 | - $wp_customize->add_setting( $setting, $args ); |
|
86 | + foreach ($settings as $setting => $args) { |
|
87 | + $wp_customize->add_setting($setting, $args); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
@@ -93,16 +93,16 @@ discard block |
||
93 | 93 | * @since 1.5.0 |
94 | 94 | * @param WP_Customize_Manager $wp_customize The Customizer object. |
95 | 95 | */ |
96 | - do_action( 'alnp_customizer_register', $wp_customize ); |
|
96 | + do_action('alnp_customizer_register', $wp_customize); |
|
97 | 97 | |
98 | 98 | $controls = $this->alnp_get_customizer_controls(); |
99 | 99 | |
100 | - foreach ( $controls as $control => $args ) { |
|
101 | - $wp_customize->add_control( new $args['class']( $wp_customize, $control, $args ) ); |
|
100 | + foreach ($controls as $control => $args) { |
|
101 | + $wp_customize->add_control(new $args['class']($wp_customize, $control, $args)); |
|
102 | 102 | } |
103 | 103 | |
104 | - if ( $this->alnp_is_customizer() ) { |
|
105 | - $this->alnp_remove_default_customizer_panels( $wp_customize ); // Remove controls from the customizer. |
|
104 | + if ($this->alnp_is_customizer()) { |
|
105 | + $this->alnp_remove_default_customizer_panels($wp_customize); // Remove controls from the customizer. |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | // Load custom controllers. |
@@ -127,30 +127,30 @@ discard block |
||
127 | 127 | * to tell users about the pro version, what comes with it |
128 | 128 | * and link to product page. |
129 | 129 | */ |
130 | - if ( ! is_alnp_pro_version_installed() ) { |
|
131 | - include_once( dirname( __FILE__ ) . '/class-alnp-pro-preview-controller.php' ); |
|
130 | + if ( ! is_alnp_pro_version_installed()) { |
|
131 | + include_once(dirname(__FILE__).'/class-alnp-pro-preview-controller.php'); |
|
132 | 132 | |
133 | 133 | $preview_args = array( |
134 | - 'title' => esc_html__( 'More?', 'auto-load-next-post' ), |
|
134 | + 'title' => esc_html__('More?', 'auto-load-next-post'), |
|
135 | 135 | 'priority' => 999, |
136 | 136 | ); |
137 | 137 | |
138 | - if ( ! $this->alnp_is_customizer() ) { |
|
139 | - $preview_args = array_merge( $preview_args, $panel ); |
|
138 | + if ( ! $this->alnp_is_customizer()) { |
|
139 | + $preview_args = array_merge($preview_args, $panel); |
|
140 | 140 | } |
141 | 141 | |
142 | - $wp_customize->add_section( 'alnp_pro_preview', $preview_args ); |
|
142 | + $wp_customize->add_section('alnp_pro_preview', $preview_args); |
|
143 | 143 | |
144 | - $wp_customize->add_setting( 'alnp_pro_preview', array( |
|
144 | + $wp_customize->add_setting('alnp_pro_preview', array( |
|
145 | 145 | 'default' => null, |
146 | - ) ); |
|
146 | + )); |
|
147 | 147 | |
148 | - $wp_customize->add_control( new Auto_Load_Next_Post_Pro_Preview_Controller( $wp_customize, 'alnp_pro_preview', array( |
|
149 | - 'label' => __( 'Looking for more options?', 'auto-load-next-post' ), |
|
148 | + $wp_customize->add_control(new Auto_Load_Next_Post_Pro_Preview_Controller($wp_customize, 'alnp_pro_preview', array( |
|
149 | + 'label' => __('Looking for more options?', 'auto-load-next-post'), |
|
150 | 150 | 'section' => 'alnp_pro_preview', |
151 | 151 | 'settings' => 'alnp_pro_preview', |
152 | 152 | 'priority' => 1, |
153 | - ) ) ); |
|
153 | + ))); |
|
154 | 154 | } |
155 | 155 | } // END alnp_init_customizer() |
156 | 156 | |
@@ -161,11 +161,11 @@ discard block |
||
161 | 161 | * @param array $components Core Customizer components list. |
162 | 162 | * @return array (Maybe) modified components list. |
163 | 163 | */ |
164 | - public function alnp_remove_widgets_panel( $components ) { |
|
165 | - if ( $this->alnp_is_customizer() ) { |
|
166 | - foreach( $components as $key => $component ) { |
|
167 | - if ( $component == 'widgets' ) unset( $components[ 'widgets' ] ); |
|
168 | - if ( $component == 'nav_menus' ) unset( $components[ 'nav_menus' ] ); |
|
164 | + public function alnp_remove_widgets_panel($components) { |
|
165 | + if ($this->alnp_is_customizer()) { |
|
166 | + foreach ($components as $key => $component) { |
|
167 | + if ($component == 'widgets') unset($components['widgets']); |
|
168 | + if ($component == 'nav_menus') unset($components['nav_menus']); |
|
169 | 169 | } |
170 | 170 | } |
171 | 171 | |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | * @param object $wp_customize |
181 | 181 | * @return boolean |
182 | 182 | */ |
183 | - public function alnp_remove_default_customizer_panels( $wp_customize ) { |
|
183 | + public function alnp_remove_default_customizer_panels($wp_customize) { |
|
184 | 184 | global $wp_customize; |
185 | 185 | |
186 | 186 | $wp_customize->remove_section("themes"); |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | * @return boolean |
203 | 203 | */ |
204 | 204 | public function alnp_is_customizer() { |
205 | - return isset( $_GET['alnp-customizer'] ) && $_GET['alnp-customizer'] === 'yes'; |
|
205 | + return isset($_GET['alnp-customizer']) && $_GET['alnp-customizer'] === 'yes'; |
|
206 | 206 | } // END alnp_is_customizer() |
207 | 207 | |
208 | 208 | /** |
@@ -217,18 +217,18 @@ discard block |
||
217 | 217 | * |
218 | 218 | * @param array $sections Customizer sections to add. |
219 | 219 | */ |
220 | - return apply_filters( 'auto_load_next_post_get_customizer_sections', array( |
|
220 | + return apply_filters('auto_load_next_post_get_customizer_sections', array( |
|
221 | 221 | 'auto_load_next_post_theme_selectors' => array( |
222 | 222 | 'capability' => 'edit_theme_options', |
223 | - 'title' => __( 'Theme Selectors', 'auto-load-next-post' ), |
|
224 | - '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>' ), |
|
223 | + 'title' => __('Theme Selectors', 'auto-load-next-post'), |
|
224 | + '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 | 225 | ), |
226 | 226 | 'auto_load_next_post_misc' => array( |
227 | 227 | 'capability' => 'edit_theme_options', |
228 | - 'title' => __( 'Misc Settings', 'auto-load-next-post' ), |
|
229 | - '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' ) ), |
|
228 | + 'title' => __('Misc Settings', 'auto-load-next-post'), |
|
229 | + '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 | 230 | ), |
231 | - ) ); |
|
231 | + )); |
|
232 | 232 | } // END alnp_get_customizer_sections() |
233 | 233 | |
234 | 234 | /** |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | * |
246 | 246 | * @param array $settings Customizer settings to add. |
247 | 247 | */ |
248 | - return apply_filters( 'auto_load_next_post_get_customizer_settings', array( |
|
248 | + return apply_filters('auto_load_next_post_get_customizer_settings', array( |
|
249 | 249 | 'auto_load_next_post_content_container' => array( |
250 | 250 | 'capability' => 'edit_theme_options', |
251 | 251 | 'default' => $settings['alnp_content_container'], |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | 'transport' => 'postMessage', |
303 | 303 | 'type' => 'option', |
304 | 304 | ), |
305 | - ) ); |
|
305 | + )); |
|
306 | 306 | } // END alnp_get_customizer_settings() |
307 | 307 | |
308 | 308 | /** |
@@ -320,64 +320,64 @@ discard block |
||
320 | 320 | * |
321 | 321 | * @param array $controls Customizer controls to add. |
322 | 322 | */ |
323 | - return apply_filters( 'auto_load_next_post_get_customizer_controls', array( |
|
323 | + return apply_filters('auto_load_next_post_get_customizer_controls', array( |
|
324 | 324 | 'alnp_content_container' => array( |
325 | 325 | 'class' => 'WP_Customize_Control', |
326 | - 'description' => __( 'The primary container where the post content is loaded in. Default: <code>main.site-main</code>', 'auto-load-next-post' ), |
|
327 | - 'label' => esc_html__( 'Content Container', 'auto-load-next-post' ), |
|
326 | + 'description' => __('The primary container where the post content is loaded in. Default: <code>main.site-main</code>', 'auto-load-next-post'), |
|
327 | + 'label' => esc_html__('Content Container', 'auto-load-next-post'), |
|
328 | 328 | 'section' => 'auto_load_next_post_theme_selectors', |
329 | 329 | 'settings' => 'auto_load_next_post_content_container', |
330 | 330 | 'type' => 'text', |
331 | 331 | ), |
332 | 332 | 'alnp_title_selector' => array( |
333 | 333 | 'class' => 'WP_Customize_Control', |
334 | - 'description' => __( 'Used to identify which article the user is reading and track should Google Analytics or other analytics be enabled. Default: <code>h1.entry-title</code>', 'auto-load-next-post' ), |
|
335 | - 'label' => esc_html__( 'Post Title Selector', 'auto-load-next-post' ), |
|
334 | + 'description' => __('Used to identify which article the user is reading and track should Google Analytics or other analytics be enabled. Default: <code>h1.entry-title</code>', 'auto-load-next-post'), |
|
335 | + 'label' => esc_html__('Post Title Selector', 'auto-load-next-post'), |
|
336 | 336 | 'section' => 'auto_load_next_post_theme_selectors', |
337 | 337 | 'settings' => 'auto_load_next_post_title_selector', |
338 | 338 | 'type' => 'text', |
339 | 339 | ), |
340 | 340 | 'alnp_navigation_container' => array( |
341 | 341 | 'class' => 'WP_Customize_Control', |
342 | - 'description' => __( 'Used to identify which post to load next if any. Default: <code>nav.post-navigation</code>', 'auto-load-next-post' ), |
|
343 | - 'label' => esc_html__( 'Post Navigation Container', 'auto-load-next-post' ), |
|
342 | + 'description' => __('Used to identify which post to load next if any. Default: <code>nav.post-navigation</code>', 'auto-load-next-post'), |
|
343 | + 'label' => esc_html__('Post Navigation Container', 'auto-load-next-post'), |
|
344 | 344 | 'section' => 'auto_load_next_post_theme_selectors', |
345 | 345 | 'settings' => 'auto_load_next_post_navigation_container', |
346 | 346 | 'type' => 'text', |
347 | 347 | ), |
348 | 348 | 'alnp_comments_container' => array( |
349 | 349 | 'class' => 'WP_Customize_Control', |
350 | - 'description' => sprintf( __( 'Used to remove comments if enabled under <strong>%1$sMisc%2$s</strong> settings. Default: <code>div#comments</code>', 'auto-load-next-post' ), '<a href="javascript:wp.customize.section( \'auto_load_next_post_misc\' ).focus();">', '</a>' ), |
|
351 | - 'label' => esc_html__( 'Comments Container', 'auto-load-next-post' ), |
|
350 | + 'description' => sprintf(__('Used to remove comments if enabled under <strong>%1$sMisc%2$s</strong> settings. Default: <code>div#comments</code>', 'auto-load-next-post'), '<a href="javascript:wp.customize.section( \'auto_load_next_post_misc\' ).focus();">', '</a>'), |
|
351 | + 'label' => esc_html__('Comments Container', 'auto-load-next-post'), |
|
352 | 352 | 'section' => 'auto_load_next_post_theme_selectors', |
353 | 353 | 'settings' => 'auto_load_next_post_comments_container', |
354 | 354 | 'type' => 'text', |
355 | 355 | ), |
356 | 356 | 'alnp_remove_comments' => array( |
357 | 357 | 'class' => 'WP_Customize_Control', |
358 | - 'description' => esc_html__( 'Enable to remove comments when each post loads including the initial post.', 'auto-load-next-post' ), |
|
359 | - 'label' => esc_html__( 'Remove Comments', 'auto-load-next-post' ), |
|
358 | + 'description' => esc_html__('Enable to remove comments when each post loads including the initial post.', 'auto-load-next-post'), |
|
359 | + 'label' => esc_html__('Remove Comments', 'auto-load-next-post'), |
|
360 | 360 | 'section' => 'auto_load_next_post_misc', |
361 | 361 | 'settings' => 'auto_load_next_post_remove_comments', |
362 | 362 | 'type' => 'checkbox', |
363 | 363 | ), |
364 | 364 | 'alnp_google_analytics' => array( |
365 | 365 | 'class' => 'WP_Customize_Control', |
366 | - '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' ), |
|
367 | - 'label' => esc_html__( 'Update Google Analytics', 'auto-load-next-post' ), |
|
366 | + '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'), |
|
367 | + 'label' => esc_html__('Update Google Analytics', 'auto-load-next-post'), |
|
368 | 368 | 'section' => 'auto_load_next_post_misc', |
369 | 369 | 'settings' => 'auto_load_next_post_google_analytics', |
370 | 370 | 'type' => 'checkbox', |
371 | 371 | ), |
372 | 372 | 'alnp_js_footer' => array( |
373 | 373 | 'class' => 'WP_Customize_Control', |
374 | - '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' ), |
|
375 | - 'label' => esc_html__( 'JavaScript in Footer?', 'auto-load-next-post' ), |
|
374 | + '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'), |
|
375 | + 'label' => esc_html__('JavaScript in Footer?', 'auto-load-next-post'), |
|
376 | 376 | 'section' => 'auto_load_next_post_misc', |
377 | 377 | 'settings' => 'auto_load_next_post_google_analytics', |
378 | 378 | 'type' => 'checkbox', |
379 | 379 | ), |
380 | - ) ); |
|
380 | + )); |
|
381 | 381 | } // END alnp_get_customizer_controls() |
382 | 382 | |
383 | 383 | /** |
@@ -388,9 +388,9 @@ discard block |
||
388 | 388 | * @param string $value Value, normally pre-sanitized. |
389 | 389 | * @return WP_Error $validity |
390 | 390 | */ |
391 | - public function alnp_validate_content_container_selector( $validity, $value ) { |
|
392 | - if ( empty( $value ) ) { |
|
393 | - $validity->add( 'required', esc_html__( 'The content container selector is empty. Will not know where to load posts without it.', 'auto-load-next-post' ) ); |
|
391 | + public function alnp_validate_content_container_selector($validity, $value) { |
|
392 | + if (empty($value)) { |
|
393 | + $validity->add('required', esc_html__('The content container selector is empty. Will not know where to load posts without it.', 'auto-load-next-post')); |
|
394 | 394 | } |
395 | 395 | |
396 | 396 | return $validity; |
@@ -404,9 +404,9 @@ discard block |
||
404 | 404 | * @param string $value Value, normally pre-sanitized. |
405 | 405 | * @return WP_Error $validity |
406 | 406 | */ |
407 | - public function alnp_validate_post_title_selector( $validity, $value ) { |
|
408 | - if ( empty( $value ) ) { |
|
409 | - $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' ) ); |
|
407 | + public function alnp_validate_post_title_selector($validity, $value) { |
|
408 | + if (empty($value)) { |
|
409 | + $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')); |
|
410 | 410 | } |
411 | 411 | |
412 | 412 | return $validity; |
@@ -420,9 +420,9 @@ discard block |
||
420 | 420 | * @param string $value Value, normally pre-sanitized. |
421 | 421 | * @return WP_Error $validity |
422 | 422 | */ |
423 | - public function alnp_validate_post_navigation_selector( $validity, $value ) { |
|
424 | - if ( empty( $value ) ) { |
|
425 | - $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' ) ); |
|
423 | + public function alnp_validate_post_navigation_selector($validity, $value) { |
|
424 | + if (empty($value)) { |
|
425 | + $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')); |
|
426 | 426 | } |
427 | 427 | |
428 | 428 | return $validity; |
@@ -436,14 +436,14 @@ discard block |
||
436 | 436 | */ |
437 | 437 | public function alnp_get_settings() { |
438 | 438 | $args = array( |
439 | - 'alnp_content_container' => get_option( 'auto_load_next_post_content_container' ), |
|
440 | - 'alnp_title_selector' => get_option( 'auto_load_next_post_title_selector' ), |
|
441 | - 'alnp_navigation_container' => get_option( 'auto_load_next_post_navigation_container' ), |
|
442 | - 'alnp_previous_post_selector' => get_option( 'auto_load_next_post_previous_post_selector' ), |
|
443 | - 'alnp_comments_container' => get_option( 'auto_load_next_post_comments_container' ), |
|
444 | - 'alnp_remove_comments' => get_option( 'auto_load_next_post_remove_comments' ), |
|
445 | - 'alnp_google_analytics' => get_option( 'auto_load_next_post_google_analytics' ), |
|
446 | - 'alnp_js_footer' => get_option( 'auto_load_next_post_js_footer' ) |
|
439 | + 'alnp_content_container' => get_option('auto_load_next_post_content_container'), |
|
440 | + 'alnp_title_selector' => get_option('auto_load_next_post_title_selector'), |
|
441 | + 'alnp_navigation_container' => get_option('auto_load_next_post_navigation_container'), |
|
442 | + 'alnp_previous_post_selector' => get_option('auto_load_next_post_previous_post_selector'), |
|
443 | + 'alnp_comments_container' => get_option('auto_load_next_post_comments_container'), |
|
444 | + 'alnp_remove_comments' => get_option('auto_load_next_post_remove_comments'), |
|
445 | + 'alnp_google_analytics' => get_option('auto_load_next_post_google_analytics'), |
|
446 | + 'alnp_js_footer' => get_option('auto_load_next_post_js_footer') |
|
447 | 447 | ); |
448 | 448 | |
449 | 449 | return $args; |
@@ -457,14 +457,14 @@ discard block |
||
457 | 457 | * @return boolean |
458 | 458 | */ |
459 | 459 | public function is_page_alnp_ready() { |
460 | - if ( is_front_page() && is_home() ) { |
|
460 | + if (is_front_page() && is_home()) { |
|
461 | 461 | return false; |
462 | - } elseif ( is_front_page() ) { |
|
462 | + } elseif (is_front_page()) { |
|
463 | 463 | return false; |
464 | - } elseif ( is_home() ) { |
|
464 | + } elseif (is_home()) { |
|
465 | 465 | return true; |
466 | 466 | } |
467 | - elseif ( is_singular( apply_filters( 'alnp_customizer_posts_ready', array( 'post' ) ) ) ) { |
|
467 | + elseif (is_singular(apply_filters('alnp_customizer_posts_ready', array('post')))) { |
|
468 | 468 | return true; |
469 | 469 | } |
470 | 470 | |
@@ -479,7 +479,7 @@ discard block |
||
479 | 479 | * @param string $post_type - Default is post. |
480 | 480 | * @return int|boolean |
481 | 481 | */ |
482 | - public static function alnp_get_random_page_permalink( $post_type = 'post' ) { |
|
482 | + public static function alnp_get_random_page_permalink($post_type = 'post') { |
|
483 | 483 | $args = array( |
484 | 484 | 'post_type' => $post_type, |
485 | 485 | 'post_status' => 'publish', |
@@ -487,13 +487,13 @@ discard block |
||
487 | 487 | 'posts_per_page' => 1 |
488 | 488 | ); |
489 | 489 | |
490 | - $query = new WP_Query( $args ); |
|
490 | + $query = new WP_Query($args); |
|
491 | 491 | |
492 | - if ( $query->have_posts() ) { |
|
493 | - while ( $query->have_posts() ) : $query->the_post(); |
|
492 | + if ($query->have_posts()) { |
|
493 | + while ($query->have_posts()) : $query->the_post(); |
|
494 | 494 | $id = get_the_ID(); |
495 | 495 | |
496 | - return get_permalink( $id ); |
|
496 | + return get_permalink($id); |
|
497 | 497 | endwhile; |
498 | 498 | } |
499 | 499 | else { |
@@ -164,8 +164,12 @@ discard block |
||
164 | 164 | public function alnp_remove_widgets_panel( $components ) { |
165 | 165 | if ( $this->alnp_is_customizer() ) { |
166 | 166 | foreach( $components as $key => $component ) { |
167 | - if ( $component == 'widgets' ) unset( $components[ 'widgets' ] ); |
|
168 | - if ( $component == 'nav_menus' ) unset( $components[ 'nav_menus' ] ); |
|
167 | + if ( $component == 'widgets' ) { |
|
168 | + unset( $components[ 'widgets' ] ); |
|
169 | + } |
|
170 | + if ( $component == 'nav_menus' ) { |
|
171 | + unset( $components[ 'nav_menus' ] ); |
|
172 | + } |
|
169 | 173 | } |
170 | 174 | } |
171 | 175 | |
@@ -463,8 +467,7 @@ discard block |
||
463 | 467 | return false; |
464 | 468 | } elseif ( is_home() ) { |
465 | 469 | return true; |
466 | - } |
|
467 | - elseif ( is_singular( apply_filters( 'alnp_customizer_posts_ready', array( 'post' ) ) ) ) { |
|
470 | + } elseif ( is_singular( apply_filters( 'alnp_customizer_posts_ready', array( 'post' ) ) ) ) { |
|
468 | 471 | return true; |
469 | 472 | } |
470 | 473 | |
@@ -495,8 +498,7 @@ discard block |
||
495 | 498 | |
496 | 499 | return get_permalink( $id ); |
497 | 500 | endwhile; |
498 | - } |
|
499 | - else { |
|
501 | + } else { |
|
500 | 502 | return false; |
501 | 503 | } |
502 | 504 | } // END alnp_get_random_page_permalink() |
@@ -10,12 +10,12 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | 17 | // Exit if Auto_Load_Next_Post_Customizer_Scripts class already exists. |
18 | -if ( !class_exists( 'Auto_Load_Next_Post_Customizer_Scripts' ) ) { |
|
18 | +if ( ! class_exists('Auto_Load_Next_Post_Customizer_Scripts')) { |
|
19 | 19 | |
20 | 20 | class Auto_Load_Next_Post_Customizer_Scripts { |
21 | 21 | |
@@ -26,8 +26,8 @@ discard block |
||
26 | 26 | * @access public |
27 | 27 | */ |
28 | 28 | public function __construct() { |
29 | - add_action( 'customize_preview_init', array( $this, 'alnp_add_customizer_preview_scripts' ) ); |
|
30 | - add_action( 'customize_controls_print_scripts', array( $this, 'alnp_add_scripts' ), 30 ); |
|
29 | + add_action('customize_preview_init', array($this, 'alnp_add_customizer_preview_scripts')); |
|
30 | + add_action('customize_controls_print_scripts', array($this, 'alnp_add_scripts'), 30); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * @since 1.5.0 |
37 | 37 | */ |
38 | 38 | public function alnp_add_customizer_preview_scripts() { |
39 | - Auto_Load_Next_Post::load_file( 'alnp-theme-customizer', '/assets/js/customizer/theme-customizer.js', true, array( 'jquery', 'customize-preview' ), '', true ); |
|
39 | + Auto_Load_Next_Post::load_file('alnp-theme-customizer', '/assets/js/customizer/theme-customizer.js', true, array('jquery', 'customize-preview'), '', true); |
|
40 | 40 | } // END alnp_add_customizer_preview_scripts() |
41 | 41 | |
42 | 42 | /** |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | */ |
69 | 69 | if ( isExpanded && !is_page_single ) { |
70 | 70 | console.log( "Random single post loaded." ); |
71 | - wp.customize.previewer.previewUrl.set( '<?php echo esc_js( Auto_Load_Next_Post_Customizer::alnp_get_random_page_permalink() ); ?>' ); |
|
71 | + wp.customize.previewer.previewUrl.set( '<?php echo esc_js(Auto_Load_Next_Post_Customizer::alnp_get_random_page_permalink()); ?>' ); |
|
72 | 72 | } |
73 | 73 | else { |
74 | 74 | console.log( 'Already viewing a single post!' ); |