@@ -8,16 +8,16 @@ discard block |
||
8 | 8 | * @version 1.5.0 |
9 | 9 | */ |
10 | 10 | |
11 | -if ( have_posts() ) : |
|
11 | +if (have_posts()) : |
|
12 | 12 | |
13 | 13 | // Load content before the loop. |
14 | - do_action( 'alnp_load_before_loop' ); |
|
14 | + do_action('alnp_load_before_loop'); |
|
15 | 15 | |
16 | 16 | // Check that there are posts to load. |
17 | - while ( have_posts() ) : the_post(); |
|
17 | + while (have_posts()) : the_post(); |
|
18 | 18 | |
19 | 19 | // Load content before the post content. |
20 | - do_action( 'alnp_load_before_content' ); |
|
20 | + do_action('alnp_load_before_content'); |
|
21 | 21 | ?> |
22 | 22 | |
23 | 23 | <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
@@ -29,26 +29,26 @@ discard block |
||
29 | 29 | |
30 | 30 | <div class="entry-content"> |
31 | 31 | <?php the_content(); ?> |
32 | - <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'auto-load-next-post' ), 'after' => '</div>' ) ); ?> |
|
32 | + <?php wp_link_pages(array('before' => '<div class="page-link">'.__('Pages:', 'auto-load-next-post'), 'after' => '</div>')); ?> |
|
33 | 33 | </div><!-- .entry-content --> |
34 | 34 | |
35 | - <?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?> |
|
35 | + <?php if (get_the_author_meta('description')) : // If a user has filled out their description, show a bio on their entries ?> |
|
36 | 36 | <div id="entry-author-info"> |
37 | 37 | <div id="author-avatar"> |
38 | 38 | |
39 | 39 | <?php |
40 | 40 | /** This filter is documented in author.php */ |
41 | - echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); |
|
41 | + echo get_avatar(get_the_author_meta('user_email'), apply_filters('twentyten_author_bio_avatar_size', 60)); |
|
42 | 42 | ?> |
43 | 43 | </div><!-- #author-avatar --> |
44 | 44 | |
45 | 45 | <div id="author-description"> |
46 | 46 | |
47 | - <h2><?php printf( __( 'About %s', 'auto-load-next-post' ), get_the_author() ); ?></h2> |
|
48 | - <?php the_author_meta( 'description' ); ?> |
|
47 | + <h2><?php printf(__('About %s', 'auto-load-next-post'), get_the_author()); ?></h2> |
|
48 | + <?php the_author_meta('description'); ?> |
|
49 | 49 | <div id="author-link"> |
50 | - <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> |
|
51 | - <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'auto-load-next-post' ), get_the_author() ); ?> |
|
50 | + <a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>" rel="author"> |
|
51 | + <?php printf(__('View all posts by %s <span class="meta-nav">→</span>', 'auto-load-next-post'), get_the_author()); ?> |
|
52 | 52 | </a> |
53 | 53 | </div><!-- #author-link --> |
54 | 54 | |
@@ -64,22 +64,22 @@ discard block |
||
64 | 64 | </div><!-- #post-## --> |
65 | 65 | |
66 | 66 | <div id="nav-below" class="navigation"> |
67 | - <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'auto-load-next-post' ) . '</span> %title' ); ?></div> |
|
67 | + <div class="nav-previous"><?php previous_post_link('%link', '<span class="meta-nav">'._x('←', 'Previous post link', 'auto-load-next-post').'</span> %title'); ?></div> |
|
68 | 68 | </div><!-- #nav-below --> |
69 | 69 | |
70 | 70 | <?php |
71 | 71 | // Load content after the post content. |
72 | - do_action( 'alnp_load_after_content' ); |
|
72 | + do_action('alnp_load_after_content'); |
|
73 | 73 | |
74 | 74 | // End the loop. |
75 | 75 | endwhile; |
76 | 76 | |
77 | 77 | // Load content after the loop. |
78 | - do_action( 'alnp_load_after_loop' ); |
|
78 | + do_action('alnp_load_after_loop'); |
|
79 | 79 | |
80 | 80 | else : |
81 | 81 | |
82 | 82 | // Load content if there are no more posts. |
83 | - do_action( 'alnp_no_more_posts' ); |
|
83 | + do_action('alnp_no_more_posts'); |
|
84 | 84 | |
85 | 85 | endif; // END if have_posts() |
@@ -31,9 +31,11 @@ |
||
31 | 31 | // Load content after the loop. |
32 | 32 | do_action( 'alnp_load_after_loop' ); |
33 | 33 | |
34 | -else : |
|
34 | +else { |
|
35 | + : |
|
35 | 36 | |
36 | 37 | // Load content if there are no more posts. |
37 | 38 | do_action( 'alnp_no_more_posts' ); |
39 | +} |
|
38 | 40 | |
39 | 41 | endif; // END if have_posts() |
@@ -8,41 +8,41 @@ |
||
8 | 8 | * @version 1.5.5 |
9 | 9 | */ |
10 | 10 | |
11 | -if ( have_posts() ) : |
|
11 | +if (have_posts()) : |
|
12 | 12 | |
13 | 13 | // Load content before the loop. |
14 | - do_action( 'alnp_load_before_loop' ); |
|
14 | + do_action('alnp_load_before_loop'); |
|
15 | 15 | |
16 | 16 | // Check that there are posts to load. |
17 | - while ( have_posts() ) : the_post(); |
|
17 | + while (have_posts()) : the_post(); |
|
18 | 18 | |
19 | 19 | // Post Type e.g. single |
20 | 20 | $post_type = alnp_get_post_type(); |
21 | 21 | |
22 | 22 | // Load content before the post content. |
23 | - do_action( 'alnp_load_before_content' ); |
|
23 | + do_action('alnp_load_before_content'); |
|
24 | 24 | |
25 | 25 | // Load content before the post content for a specific post type. |
26 | - do_action( 'alnp_load_before_content_post_type_' . $post_type ); |
|
26 | + do_action('alnp_load_before_content_post_type_'.$post_type); |
|
27 | 27 | |
28 | 28 | // Get template for specific post type. |
29 | - include_once( 'content-' . $post_type . '.php' ); |
|
29 | + include_once('content-'.$post_type.'.php'); |
|
30 | 30 | |
31 | 31 | // Load content after the post content for a specific post type. |
32 | - do_action( 'alnp_load_after_content_post_type_' . $post_type ); |
|
32 | + do_action('alnp_load_after_content_post_type_'.$post_type); |
|
33 | 33 | |
34 | 34 | // Load content after the post content. |
35 | - do_action( 'alnp_load_after_content' ); |
|
35 | + do_action('alnp_load_after_content'); |
|
36 | 36 | |
37 | 37 | // End the loop. |
38 | 38 | endwhile; |
39 | 39 | |
40 | 40 | // Load content after the loop. |
41 | - do_action( 'alnp_load_after_loop' ); |
|
41 | + do_action('alnp_load_after_loop'); |
|
42 | 42 | |
43 | 43 | else : |
44 | 44 | |
45 | 45 | // Load content if there are no more posts. |
46 | - do_action( 'alnp_no_more_posts' ); |
|
46 | + do_action('alnp_no_more_posts'); |
|
47 | 47 | |
48 | 48 | endif; // END if have_posts() |
@@ -31,9 +31,11 @@ |
||
31 | 31 | // Load content after the loop. |
32 | 32 | do_action( 'alnp_load_after_loop' ); |
33 | 33 | |
34 | -else : |
|
34 | +else { |
|
35 | + : |
|
35 | 36 | |
36 | 37 | // Load content if there are no more posts. |
37 | 38 | do_action( 'alnp_no_more_posts' ); |
39 | +} |
|
38 | 40 | |
39 | 41 | endif; // END if have_posts() |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
2 | 2 | <header class="entry-header"> |
3 | - <?php get_template_part( 'template-parts/header/entry', 'header' ); ?> |
|
3 | + <?php get_template_part('template-parts/header/entry', 'header'); ?> |
|
4 | 4 | </header> |
5 | 5 | |
6 | 6 | <figure class="post-thumbnail"> |
7 | 7 | <div class="post-thumbnail-inner"> |
8 | - <?php the_post_thumbnail( 'post-thumbnail' ); ?> |
|
8 | + <?php the_post_thumbnail('post-thumbnail'); ?> |
|
9 | 9 | </div> |
10 | 10 | </figure> |
11 | 11 | |
@@ -15,21 +15,21 @@ discard block |
||
15 | 15 | |
16 | 16 | wp_link_pages( |
17 | 17 | array( |
18 | - 'before' => '<div class="page-links">' . __( 'Pages:', 'auto-load-next-post' ), |
|
18 | + 'before' => '<div class="page-links">'.__('Pages:', 'auto-load-next-post'), |
|
19 | 19 | 'after' => '</div>', |
20 | 20 | ) |
21 | 21 | ); |
22 | 22 | ?> |
23 | 23 | </div><!-- .entry-content --> |
24 | 24 | |
25 | - <?php if ( get_edit_post_link() ) : ?> |
|
25 | + <?php if (get_edit_post_link()) : ?> |
|
26 | 26 | <footer class="entry-footer"> |
27 | 27 | <?php |
28 | 28 | edit_post_link( |
29 | 29 | sprintf( |
30 | 30 | wp_kses( |
31 | 31 | /* translators: %s: Name of current post. Only visible to screen readers */ |
32 | - __( 'Edit <span class="screen-reader-text">%s</span>', 'auto-load-next-post' ), |
|
32 | + __('Edit <span class="screen-reader-text">%s</span>', 'auto-load-next-post'), |
|
33 | 33 | array( |
34 | 34 | 'span' => array( |
35 | 35 | 'class' => array(), |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
2 | 2 | <header class="entry-header"> |
3 | - <?php get_template_part( 'template-parts/header/entry', 'header' ); ?> |
|
3 | + <?php get_template_part('template-parts/header/entry', 'header'); ?> |
|
4 | 4 | </header> |
5 | 5 | |
6 | 6 | <figure class="post-thumbnail"> |
7 | 7 | <div class="post-thumbnail-inner"> |
8 | - <?php the_post_thumbnail( 'post-thumbnail' ); ?> |
|
8 | + <?php the_post_thumbnail('post-thumbnail'); ?> |
|
9 | 9 | </div> |
10 | 10 | </figure> |
11 | 11 | |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | |
16 | 16 | wp_link_pages( |
17 | 17 | array( |
18 | - 'before' => '<div class="page-links">' . __( 'Pages:', 'auto-load-next-post' ), |
|
18 | + 'before' => '<div class="page-links">'.__('Pages:', 'auto-load-next-post'), |
|
19 | 19 | 'after' => '</div>', |
20 | 20 | ) |
21 | 21 | ); |
@@ -26,8 +26,8 @@ discard block |
||
26 | 26 | <?php twentynineteen_entry_footer(); ?> |
27 | 27 | </footer><!-- .entry-footer --> |
28 | 28 | |
29 | - <?php if ( ! is_singular( 'attachment' ) ) : ?> |
|
30 | - <?php get_template_part( 'template-parts/post/author', 'bio' ); ?> |
|
29 | + <?php if ( ! is_singular('attachment')) : ?> |
|
30 | + <?php get_template_part('template-parts/post/author', 'bio'); ?> |
|
31 | 31 | <?php endif; ?> |
32 | 32 | |
33 | 33 | </article><!-- #post-${ID} --> |
34 | 34 | \ No newline at end of file |
@@ -10,11 +10,11 @@ discard block |
||
10 | 10 | * @license GPL-2.0+ |
11 | 11 | */ |
12 | 12 | |
13 | -if ( ! defined('ABSPATH') ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; // Exit if accessed directly. |
15 | 15 | } |
16 | 16 | |
17 | -if ( ! class_exists( 'Auto_Load_Next_Post_Settings_Page' ) ) { |
|
17 | +if ( ! class_exists('Auto_Load_Next_Post_Settings_Page')) { |
|
18 | 18 | |
19 | 19 | abstract class Auto_Load_Next_Post_Settings_Page { |
20 | 20 | |
@@ -42,10 +42,10 @@ discard block |
||
42 | 42 | * @version 1.5.5 |
43 | 43 | */ |
44 | 44 | public function __construct() { |
45 | - add_filter( 'auto_load_next_post_settings_tabs_array', array( $this, 'add_settings_page' ), 20 ); |
|
46 | - add_action( 'auto_load_next_post_settings_' . $this->id, array( $this, 'need_help' ), 0 ); |
|
47 | - add_action( 'auto_load_next_post_settings_' . $this->id, array( $this, 'output' ), 10 ); |
|
48 | - add_action( 'auto_load_next_post_settings_save_' . $this->id, array( $this, 'save' ) ); |
|
45 | + add_filter('auto_load_next_post_settings_tabs_array', array($this, 'add_settings_page'), 20); |
|
46 | + add_action('auto_load_next_post_settings_'.$this->id, array($this, 'need_help'), 0); |
|
47 | + add_action('auto_load_next_post_settings_'.$this->id, array($this, 'output'), 10); |
|
48 | + add_action('auto_load_next_post_settings_save_'.$this->id, array($this, 'save')); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | /** |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * @param array $pages |
79 | 79 | * @return array $pages |
80 | 80 | */ |
81 | - public function add_settings_page( $pages ) { |
|
81 | + public function add_settings_page($pages) { |
|
82 | 82 | $pages[$this->id] = $this->label; |
83 | 83 | |
84 | 84 | return $pages; |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | * @param array $pages |
93 | 93 | * @return array $pages |
94 | 94 | */ |
95 | - public function add_menu_page( $pages ) { |
|
95 | + public function add_menu_page($pages) { |
|
96 | 96 | $pages[$this->id] = $this->label; |
97 | 97 | |
98 | 98 | return $pages; |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | public function output() { |
119 | 119 | $settings = $this->get_settings(); |
120 | 120 | |
121 | - Auto_Load_Next_Post_Admin_Settings::output_fields( $settings ); |
|
121 | + Auto_Load_Next_Post_Admin_Settings::output_fields($settings); |
|
122 | 122 | } // END output() |
123 | 123 | |
124 | 124 | /** |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | |
134 | 134 | $settings = $this->get_settings(); |
135 | 135 | |
136 | - Auto_Load_Next_Post_Admin_Settings::save_fields( $settings, $current_tab ); |
|
136 | + Auto_Load_Next_Post_Admin_Settings::save_fields($settings, $current_tab); |
|
137 | 137 | } // END save() |
138 | 138 | |
139 | 139 | /** |
@@ -150,11 +150,11 @@ discard block |
||
150 | 150 | global $current_tab; |
151 | 151 | |
152 | 152 | // If theme is already supported then don't show help button for theme selectors. |
153 | - if ( is_alnp_supported() && $current_tab == 'theme-selectors' ) { |
|
153 | + if (is_alnp_supported() && $current_tab == 'theme-selectors') { |
|
154 | 154 | return; |
155 | 155 | } |
156 | 156 | |
157 | - echo '<a href="#" class="need-help trigger-help" data-tab="' . $current_tab . '"><span class="sonar-dot"></span> ' . esc_html( 'Need Help?', 'auto-load-next-post' ) . '</a>'; |
|
157 | + echo '<a href="#" class="need-help trigger-help" data-tab="'.$current_tab.'"><span class="sonar-dot"></span> '.esc_html('Need Help?', 'auto-load-next-post').'</a>'; |
|
158 | 158 | } // END need_help() |
159 | 159 | |
160 | 160 | } // END class |
@@ -8,60 +8,60 @@ |
||
8 | 8 | * @version 1.5.8 |
9 | 9 | */ |
10 | 10 | |
11 | -if ( have_posts() ) : |
|
11 | +if (have_posts()) : |
|
12 | 12 | |
13 | 13 | // Load content before the loop. |
14 | - do_action( 'alnp_load_before_loop' ); |
|
14 | + do_action('alnp_load_before_loop'); |
|
15 | 15 | |
16 | 16 | // Check that there are posts to load. |
17 | - while ( have_posts() ) : the_post(); |
|
17 | + while (have_posts()) : the_post(); |
|
18 | 18 | |
19 | 19 | $post_format = get_post_format(); // Post Format e.g. video |
20 | 20 | |
21 | 21 | $post_type = alnp_get_post_type(); // Post Type e.g. single |
22 | 22 | |
23 | 23 | // Load content before the post content. |
24 | - do_action( 'alnp_load_before_content' ); |
|
24 | + do_action('alnp_load_before_content'); |
|
25 | 25 | |
26 | 26 | // Load content before the post content for a specific post format. |
27 | - do_action( 'alnp_load_before_content_post_format_' . $post_format ); |
|
27 | + do_action('alnp_load_before_content_post_format_'.$post_format); |
|
28 | 28 | |
29 | 29 | // Load content before the post content for a specific post type. |
30 | - do_action( 'alnp_load_before_content_post_type_' . $post_type ); |
|
30 | + do_action('alnp_load_before_content_post_type_'.$post_type); |
|
31 | 31 | |
32 | - if ( false === $post_format ) { |
|
32 | + if (false === $post_format) { |
|
33 | 33 | /* |
34 | 34 | * Include the Post-Type-specific template for the content. |
35 | 35 | * layout-___.php (where ___ is the Post Type name). |
36 | 36 | */ |
37 | - if ( locate_template( alnp_template_location() . 'layout-' . $post_type . '.php') != '' ) { |
|
38 | - get_template_part( alnp_template_location() . 'layout', $post_type ); |
|
37 | + if (locate_template(alnp_template_location().'layout-'.$post_type.'.php') != '') { |
|
38 | + get_template_part(alnp_template_location().'layout', $post_type); |
|
39 | 39 | } else { |
40 | 40 | // If no specific post type found then fallback to standard layout.php file. |
41 | - get_template_part( alnp_template_location() . 'layout' ); |
|
41 | + get_template_part(alnp_template_location().'layout'); |
|
42 | 42 | } |
43 | 43 | } else { |
44 | - get_template_part( alnp_template_location() . 'layout', $post_format ); |
|
44 | + get_template_part(alnp_template_location().'layout', $post_format); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | // Load content after the post content for a specific post type. |
48 | - do_action( 'alnp_load_after_content_post_type_' . $post_type ); |
|
48 | + do_action('alnp_load_after_content_post_type_'.$post_type); |
|
49 | 49 | |
50 | 50 | // Load content after the post content for a specific post format. |
51 | - do_action( 'alnp_load_after_content_post_format_' . $post_format ); |
|
51 | + do_action('alnp_load_after_content_post_format_'.$post_format); |
|
52 | 52 | |
53 | 53 | // Load content after the post content. |
54 | - do_action( 'alnp_load_after_content' ); |
|
54 | + do_action('alnp_load_after_content'); |
|
55 | 55 | |
56 | 56 | // End the loop. |
57 | 57 | endwhile; |
58 | 58 | |
59 | 59 | // Load content after the loop. |
60 | - do_action( 'alnp_load_after_loop' ); |
|
60 | + do_action('alnp_load_after_loop'); |
|
61 | 61 | |
62 | 62 | else : |
63 | 63 | |
64 | 64 | // Load content if there are no more posts. |
65 | - do_action( 'alnp_no_more_posts' ); |
|
65 | + do_action('alnp_no_more_posts'); |
|
66 | 66 | |
67 | 67 | endif; // END if have_posts() |
@@ -31,9 +31,11 @@ |
||
31 | 31 | // Load content after the loop. |
32 | 32 | do_action( 'alnp_load_after_loop' ); |
33 | 33 | |
34 | -else : |
|
34 | +else { |
|
35 | + : |
|
35 | 36 | |
36 | 37 | // Load content if there are no more posts. |
37 | 38 | do_action( 'alnp_no_more_posts' ); |
39 | +} |
|
38 | 40 | |
39 | 41 | endif; // END if have_posts() |
@@ -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 | // 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 location of the repeater template. |
35 | - add_filter( 'alnp_template_redirect', array( __CLASS__, 'template_redirect' ) ); |
|
35 | + add_filter('alnp_template_redirect', array(__CLASS__, 'template_redirect')); |
|
36 | 36 | |
37 | 37 | // Filters the repeater template location. |
38 | - add_filter( 'alnp_template_location', array( __CLASS__, 'alnp_oceanwp_template_location' ) ); |
|
38 | + add_filter('alnp_template_location', array(__CLASS__, 'alnp_oceanwp_template_location')); |
|
39 | 39 | |
40 | 40 | // Remove Auto Load Next Post compatible post navigation. |
41 | - remove_action( 'alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10 ); |
|
41 | + remove_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10); |
|
42 | 42 | } // END init() |
43 | 43 | |
44 | 44 | /** |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @return string |
49 | 49 | */ |
50 | 50 | public static function template_redirect() { |
51 | - return AUTO_LOAD_NEXT_POST_FILE_PATH . '/template/theme-support/oceanwp/content-alnp.php'; |
|
51 | + return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/oceanwp/content-alnp.php'; |
|
52 | 52 | } // END template_redirect() |
53 | 53 | |
54 | 54 | /** |
@@ -69,14 +69,14 @@ discard block |
||
69 | 69 | * @static |
70 | 70 | */ |
71 | 71 | public static function add_theme_support() { |
72 | - add_theme_support( 'auto-load-next-post', array( |
|
72 | + add_theme_support('auto-load-next-post', array( |
|
73 | 73 | 'content_container' => 'div.site-content', |
74 | 74 | 'title_selector' => '.entry-title', |
75 | 75 | 'navigation_container' => 'nav.post-navigation', |
76 | 76 | 'comments_container' => 'section#comments', |
77 | 77 | 'load_js_in_footer' => 'no', |
78 | 78 | 'lock_js_in_footer' => 'no', |
79 | - ) ); |
|
79 | + )); |
|
80 | 80 | } // END add_theme_support() |
81 | 81 | |
82 | 82 | } // END class |
@@ -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 |
@@ -11,11 +11,11 @@ discard block |
||
11 | 11 | */ |
12 | 12 | |
13 | 13 | // Exit if accessed directly. |
14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
14 | +if ( ! defined('ABSPATH')) { |
|
15 | 15 | exit; |
16 | 16 | } |
17 | 17 | |
18 | -if ( ! class_exists( 'Auto_Load_Next_Post_Settings_Theme_Selectors_Tab' ) ) { |
|
18 | +if ( ! class_exists('Auto_Load_Next_Post_Settings_Theme_Selectors_Tab')) { |
|
19 | 19 | |
20 | 20 | class Auto_Load_Next_Post_Settings_Theme_Selectors_Tab extends Auto_Load_Next_Post_Settings_Page { |
21 | 21 | |
@@ -28,12 +28,12 @@ discard block |
||
28 | 28 | */ |
29 | 29 | public function __construct() { |
30 | 30 | $this->id = 'theme-selectors'; |
31 | - $this->label = esc_html__( 'Theme Selectors', 'auto-load-next-post' ); |
|
31 | + $this->label = esc_html__('Theme Selectors', 'auto-load-next-post'); |
|
32 | 32 | |
33 | 33 | parent::__construct(); |
34 | 34 | |
35 | - add_action( 'auto_load_next_post_sections_theme-selectors', array( __CLASS__, 'is_theme_supported' ), 10 ); |
|
36 | - add_action( 'auto_load_next_post_sections_theme-selectors', array( __CLASS__, 'no_theme_selectors_set' ), 10 ); |
|
35 | + add_action('auto_load_next_post_sections_theme-selectors', array(__CLASS__, 'is_theme_supported'), 10); |
|
36 | + add_action('auto_load_next_post_sections_theme-selectors', array(__CLASS__, 'no_theme_selectors_set'), 10); |
|
37 | 37 | } // END __construct() |
38 | 38 | |
39 | 39 | /** |
@@ -44,14 +44,14 @@ discard block |
||
44 | 44 | * @since 1.5.10 |
45 | 45 | */ |
46 | 46 | public static function is_theme_supported() { |
47 | - if ( is_alnp_supported() ) { |
|
48 | - $plugin_supported = alnp_get_theme_support( 'plugin_support' ); |
|
47 | + if (is_alnp_supported()) { |
|
48 | + $plugin_supported = alnp_get_theme_support('plugin_support'); |
|
49 | 49 | |
50 | 50 | // Is the theme supported by theme or plugin? |
51 | - if ( ! empty( $plugin_supported ) && $plugin_supported == 'yes' ) { |
|
52 | - include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-plugin-supported.php' ); |
|
51 | + if ( ! empty($plugin_supported) && $plugin_supported == 'yes') { |
|
52 | + include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-plugin-supported.php'); |
|
53 | 53 | } else { |
54 | - include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-is-supported.php' ); |
|
54 | + include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-is-supported.php'); |
|
55 | 55 | } |
56 | 56 | } |
57 | 57 | } // END is_theme_supported() |
@@ -66,24 +66,24 @@ discard block |
||
66 | 66 | public static function no_theme_selectors_set() { |
67 | 67 | $set_selectors = array(); |
68 | 68 | |
69 | - $content_container = get_option( 'auto_load_next_post_content_container' ); |
|
70 | - $title_selector = get_option( 'auto_load_next_post_title_selector' ); |
|
71 | - $navigation_container = get_option( 'auto_load_next_post_navigation_container' ); |
|
69 | + $content_container = get_option('auto_load_next_post_content_container'); |
|
70 | + $title_selector = get_option('auto_load_next_post_title_selector'); |
|
71 | + $navigation_container = get_option('auto_load_next_post_navigation_container'); |
|
72 | 72 | |
73 | - if ( ! empty( $content_container ) ) { |
|
73 | + if ( ! empty($content_container)) { |
|
74 | 74 | $set_selectors[] = $content_container; |
75 | 75 | } |
76 | 76 | |
77 | - if ( ! empty( $title_selector ) ) { |
|
77 | + if ( ! empty($title_selector)) { |
|
78 | 78 | $set_selectors[] = $title_selector; |
79 | 79 | } |
80 | 80 | |
81 | - if ( ! empty( $navigation_container ) ) { |
|
81 | + if ( ! empty($navigation_container)) { |
|
82 | 82 | $set_selectors[] = $navigation_container; |
83 | 83 | } |
84 | 84 | |
85 | - if ( empty( $set_selectors ) || is_array( $set_selectors ) && count( $set_selectors ) < 3 ) { |
|
86 | - include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-no-theme-selectors.php' ); |
|
85 | + if (empty($set_selectors) || is_array($set_selectors) && count($set_selectors) < 3) { |
|
86 | + include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-no-theme-selectors.php'); |
|
87 | 87 | } |
88 | 88 | } // END no_theme_selectors_set() |
89 | 89 | |
@@ -102,26 +102,26 @@ discard block |
||
102 | 102 | 'auto_load_next_post_theme_selectors_settings', array( |
103 | 103 | |
104 | 104 | array( |
105 | - 'title' => esc_html__( 'Theme Selectors', 'auto-load-next-post' ), |
|
105 | + 'title' => esc_html__('Theme Selectors', 'auto-load-next-post'), |
|
106 | 106 | 'type' => 'title', |
107 | - 'desc' => sprintf( esc_html__( 'Here you set the theme selectors below according to your active theme. All are required for %s to work.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ), |
|
107 | + 'desc' => sprintf(esc_html__('Here you set the theme selectors below according to your active theme. All are required for %s to work.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')), |
|
108 | 108 | 'id' => 'theme_selectors_options' |
109 | 109 | ), |
110 | 110 | |
111 | 111 | array( |
112 | - 'title' => esc_html__( 'Content Container', 'auto-load-next-post' ), |
|
113 | - 'desc' => sprintf( __( 'The primary container where the post content is loaded in. Default: %s', 'auto-load-next-post' ), '<code>main.site-main</code>' ), |
|
112 | + 'title' => esc_html__('Content Container', 'auto-load-next-post'), |
|
113 | + 'desc' => sprintf(__('The primary container where the post content is loaded in. Default: %s', 'auto-load-next-post'), '<code>main.site-main</code>'), |
|
114 | 114 | 'id' => 'auto_load_next_post_content_container', |
115 | 115 | 'default' => 'main.site-main', |
116 | - 'placeholder' => esc_html__( 'Required', 'auto-load-next-post' ), |
|
116 | + 'placeholder' => esc_html__('Required', 'auto-load-next-post'), |
|
117 | 117 | 'type' => 'text', |
118 | 118 | 'css' => 'min-width:300px;', |
119 | 119 | 'autoload' => false |
120 | 120 | ), |
121 | 121 | |
122 | 122 | array( |
123 | - 'title' => esc_html__( 'Post Title', 'auto-load-next-post' ), |
|
124 | - 'desc' => sprintf( __( 'Used to identify which article the user is reading and track should Google Analytics or other analytics be enabled. Default: %s', 'auto-load-next-post' ), '<code>h1.entry-title</code>' ), |
|
123 | + 'title' => esc_html__('Post Title', 'auto-load-next-post'), |
|
124 | + 'desc' => sprintf(__('Used to identify which article the user is reading and track should Google Analytics or other analytics be enabled. Default: %s', 'auto-load-next-post'), '<code>h1.entry-title</code>'), |
|
125 | 125 | 'id' => 'auto_load_next_post_title_selector', |
126 | 126 | 'default' => 'h1.entry-title', |
127 | 127 | 'type' => 'text', |
@@ -130,8 +130,8 @@ discard block |
||
130 | 130 | ), |
131 | 131 | |
132 | 132 | array( |
133 | - 'title' => esc_html__( 'Post Navigation', 'auto-load-next-post' ), |
|
134 | - 'desc' => sprintf( __( 'Used to identify which post to load next if any. Default: %s', 'auto-load-next-post' ), '<code>nav.post-navigation</code>' ), |
|
133 | + 'title' => esc_html__('Post Navigation', 'auto-load-next-post'), |
|
134 | + 'desc' => sprintf(__('Used to identify which post to load next if any. Default: %s', 'auto-load-next-post'), '<code>nav.post-navigation</code>'), |
|
135 | 135 | 'id' => 'auto_load_next_post_navigation_container', |
136 | 136 | 'default' => 'nav.post-navigation', |
137 | 137 | 'type' => 'text', |
@@ -140,8 +140,8 @@ discard block |
||
140 | 140 | ), |
141 | 141 | |
142 | 142 | array( |
143 | - 'title' => esc_html__( 'Comments Container', 'auto-load-next-post' ), |
|
144 | - 'desc' => sprintf( __( 'Used to remove comments if enabled under %1$sMisc%2$s settings. Default: %3$s', 'auto-load-next-post' ), '<strong><a href="' . get_admin_url( $blog_id, 'options-general.php?page=auto-load-next-post-settings&tab=misc' ) . '">', '</a></strong>', '<code>div#comments</code>' ), |
|
143 | + 'title' => esc_html__('Comments Container', 'auto-load-next-post'), |
|
144 | + 'desc' => sprintf(__('Used to remove comments if enabled under %1$sMisc%2$s settings. Default: %3$s', 'auto-load-next-post'), '<strong><a href="'.get_admin_url($blog_id, 'options-general.php?page=auto-load-next-post-settings&tab=misc').'">', '</a></strong>', '<code>div#comments</code>'), |
|
145 | 145 | 'id' => 'auto_load_next_post_comments_container', |
146 | 146 | 'default' => 'div#comments', |
147 | 147 | 'type' => 'text', |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | public function output() { |
166 | 166 | $settings = $this->get_settings(); |
167 | 167 | |
168 | - Auto_Load_Next_Post_Admin_Settings::output_fields( $settings ); |
|
168 | + Auto_Load_Next_Post_Admin_Settings::output_fields($settings); |
|
169 | 169 | } // END output() |
170 | 170 | |
171 | 171 | /** |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | public function save() { |
179 | 179 | $settings = $this->get_settings(); |
180 | 180 | |
181 | - Auto_Load_Next_Post_Admin_Settings::save_fields( $settings ); |
|
181 | + Auto_Load_Next_Post_Admin_Settings::save_fields($settings); |
|
182 | 182 | } // END save() |
183 | 183 | |
184 | 184 | } // END class |