@@ -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() |
@@ -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 | |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * @access protected |
25 | 25 | * @var string $id |
26 | 26 | */ |
27 | - protected $id = ''; |
|
27 | + protected $id = ''; |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * Setting page label. |
@@ -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 |
@@ -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 |