@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly. |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public static function init() { |
31 | 31 | // Add theme support and preset the theme selectors. |
32 | - add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) ); |
|
32 | + add_action('after_setup_theme', array(__CLASS__, 'add_theme_support')); |
|
33 | 33 | } // END init() |
34 | 34 | |
35 | 35 | /** |
@@ -40,14 +40,14 @@ discard block |
||
40 | 40 | * @static |
41 | 41 | */ |
42 | 42 | public static function add_theme_support() { |
43 | - add_theme_support( 'auto-load-next-post', array( |
|
43 | + add_theme_support('auto-load-next-post', array( |
|
44 | 44 | 'content_container' => 'main.post-wrap', |
45 | 45 | 'title_selector' => 'h1.entry-title', |
46 | 46 | 'navigation_container' => 'nav.post-navigation', |
47 | 47 | 'comments_container' => 'div#comments', |
48 | 48 | 'load_js_in_footer' => 'no', |
49 | 49 | 'lock_js_in_footer' => 'no', |
50 | - ) ); |
|
50 | + )); |
|
51 | 51 | } // END add_theme_support() |
52 | 52 | |
53 | 53 | } // END class |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly. |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public static function init() { |
31 | 31 | // Filters the repeater template location. |
32 | - add_filter( 'alnp_template_redirect', array( __CLASS__, 'alnp_twentyten_template_redirect' ) ); |
|
32 | + add_filter('alnp_template_redirect', array(__CLASS__, 'alnp_twentyten_template_redirect')); |
|
33 | 33 | |
34 | 34 | // Add theme support and preset the theme selectors. |
35 | - add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) ); |
|
35 | + add_action('after_setup_theme', array(__CLASS__, 'add_theme_support')); |
|
36 | 36 | } // END init() |
37 | 37 | |
38 | 38 | /** |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * @return string |
44 | 44 | */ |
45 | 45 | public static function alnp_twentyten_template_redirect() { |
46 | - return AUTO_LOAD_NEXT_POST_FILE_PATH . '/template/theme-support/twentyten/content-alnp.php'; |
|
46 | + return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/twentyten/content-alnp.php'; |
|
47 | 47 | } // END alnp_twentyten_template_redirect() |
48 | 48 | |
49 | 49 | /** |
@@ -54,14 +54,14 @@ discard block |
||
54 | 54 | * @static |
55 | 55 | */ |
56 | 56 | public static function add_theme_support() { |
57 | - add_theme_support( 'auto-load-next-post', array( |
|
57 | + add_theme_support('auto-load-next-post', array( |
|
58 | 58 | 'content_container' => '#content', |
59 | 59 | 'title_selector' => 'h1.entry-title', |
60 | 60 | 'navigation_container' => '#nav-below', |
61 | 61 | 'comments_container' => 'div#comments', |
62 | 62 | 'load_js_in_footer' => 'no', |
63 | 63 | 'lock_js_in_footer' => 'no', |
64 | - ) ); |
|
64 | + )); |
|
65 | 65 | } // END add_theme_support() |
66 | 66 | |
67 | 67 | } // END class |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly. |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -29,16 +29,16 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public static function init() { |
31 | 31 | // This removes the default post navigation in the repeater template. |
32 | - remove_action( 'alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10 ); |
|
32 | + remove_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10); |
|
33 | 33 | |
34 | 34 | // Add a compaitable post navigation. |
35 | - add_action( 'alnp_load_after_content', array( __CLASS__, 'alnp_twentyeleven_post_navigation' ), 1, 10 ); |
|
35 | + add_action('alnp_load_after_content', array(__CLASS__, 'alnp_twentyeleven_post_navigation'), 1, 10); |
|
36 | 36 | |
37 | 37 | // Filters the repeater template location. |
38 | - add_filter( 'alnp_template_redirect', array( __CLASS__, 'alnp_twentyeleven_template_redirect' ) ); |
|
38 | + add_filter('alnp_template_redirect', array(__CLASS__, 'alnp_twentyeleven_template_redirect')); |
|
39 | 39 | |
40 | 40 | // Add theme support and preset the theme selectors. |
41 | - add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) ); |
|
41 | + add_action('after_setup_theme', array(__CLASS__, 'add_theme_support')); |
|
42 | 42 | } // END init() |
43 | 43 | |
44 | 44 | /** |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | public static function alnp_twentyeleven_post_navigation() { |
51 | 51 | ?> |
52 | 52 | <nav id="nav-single"> |
53 | - <h3 class="assistive-text"><?php _e( 'Post navigation', 'auto-load-next-post' ); ?></h3> |
|
54 | - <span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'auto-load-next-post' ) ); ?></span> |
|
53 | + <h3 class="assistive-text"><?php _e('Post navigation', 'auto-load-next-post'); ?></h3> |
|
54 | + <span class="nav-previous"><?php previous_post_link('%link', __('<span class="meta-nav">←</span> Previous', 'auto-load-next-post')); ?></span> |
|
55 | 55 | </nav><!-- #nav-single --> |
56 | 56 | <?php |
57 | 57 | } // END alnp_twentyeleven_post_navigation() |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * @return string |
65 | 65 | */ |
66 | 66 | public static function alnp_twentyeleven_template_redirect() { |
67 | - return AUTO_LOAD_NEXT_POST_FILE_PATH . '/template/theme-support/twentyeleven/content-alnp.php'; |
|
67 | + return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/twentyeleven/content-alnp.php'; |
|
68 | 68 | } // END alnp_twentyeleven_template_redirect() |
69 | 69 | |
70 | 70 | /** |
@@ -75,14 +75,14 @@ discard block |
||
75 | 75 | * @static |
76 | 76 | */ |
77 | 77 | public static function add_theme_support() { |
78 | - add_theme_support( 'auto-load-next-post', array( |
|
78 | + add_theme_support('auto-load-next-post', array( |
|
79 | 79 | 'content_container' => '#content', |
80 | 80 | 'title_selector' => 'h1.entry-title', |
81 | 81 | 'navigation_container' => '#nav-single', |
82 | 82 | 'comments_container' => 'div#comments', |
83 | 83 | 'load_js_in_footer' => 'no', |
84 | 84 | 'lock_js_in_footer' => 'no', |
85 | - ) ); |
|
85 | + )); |
|
86 | 86 | } // END add_theme_support() |
87 | 87 | |
88 | 88 | } // END class |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly. |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public static function init() { |
31 | 31 | // Add theme support and preset the theme selectors. |
32 | - add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) ); |
|
32 | + add_action('after_setup_theme', array(__CLASS__, 'add_theme_support')); |
|
33 | 33 | |
34 | 34 | // Filters the repeater template location. |
35 | - add_filter( 'alnp_template_redirect', array( __CLASS__, 'alnp_make_template_redirect' ) ); |
|
35 | + add_filter('alnp_template_redirect', array(__CLASS__, 'alnp_make_template_redirect')); |
|
36 | 36 | } // END init() |
37 | 37 | |
38 | 38 | /** |
@@ -43,14 +43,14 @@ discard block |
||
43 | 43 | * @static |
44 | 44 | */ |
45 | 45 | public static function add_theme_support() { |
46 | - add_theme_support( 'auto-load-next-post', array( |
|
46 | + add_theme_support('auto-load-next-post', array( |
|
47 | 47 | 'content_container' => 'main.site-main', |
48 | 48 | 'title_selector' => 'h1.entry-title', |
49 | 49 | 'navigation_container' => 'nav.post-navigation', |
50 | 50 | 'comments_container' => 'section#comments', |
51 | 51 | 'load_js_in_footer' => 'no', |
52 | 52 | 'lock_js_in_footer' => 'no', |
53 | - ) ); |
|
53 | + )); |
|
54 | 54 | } // END add_theme_support() |
55 | 55 | |
56 | 56 | /** |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | * @return string |
62 | 62 | */ |
63 | 63 | public static function alnp_make_template_redirect() { |
64 | - return AUTO_LOAD_NEXT_POST_FILE_PATH . '/template/theme-support/twentynineteen/content-alnp.php'; |
|
64 | + return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/twentynineteen/content-alnp.php'; |
|
65 | 65 | } // END alnp_make_template_redirect() |
66 | 66 | |
67 | 67 | } // END class |
@@ -8,22 +8,22 @@ 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 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
23 | 23 | <header class="entry-header"> |
24 | 24 | <h1 class="entry-title"><?php the_title(); ?></h1> |
25 | 25 | |
26 | - <?php if ( 'post' == get_post_type() ) : ?> |
|
26 | + <?php if ('post' == get_post_type()) : ?> |
|
27 | 27 | <div class="entry-meta"> |
28 | 28 | <?php twentyeleven_posted_on(); ?> |
29 | 29 | </div><!-- .entry-meta --> |
@@ -32,49 +32,49 @@ discard block |
||
32 | 32 | |
33 | 33 | <div class="entry-content"> |
34 | 34 | <?php the_content(); ?> |
35 | - <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'auto-load-next-post' ), 'after' => '</div>' ) ); ?> |
|
35 | + <?php wp_link_pages(array('before' => '<div class="page-link">'.__('Pages:', 'auto-load-next-post'), 'after' => '</div>')); ?> |
|
36 | 36 | </div><!-- .entry-content --> |
37 | 37 | |
38 | 38 | <footer class="entry-meta"> |
39 | 39 | <?php |
40 | 40 | /* translators: used between list items, there is a space after the comma */ |
41 | - $categories_list = get_the_category_list( __( ', ', 'auto-load-next-post' ) ); |
|
41 | + $categories_list = get_the_category_list(__(', ', 'auto-load-next-post')); |
|
42 | 42 | |
43 | 43 | /* translators: used between list items, there is a space after the comma */ |
44 | - $tag_list = get_the_tag_list( '', __( ', ', 'auto-load-next-post' ) ); |
|
45 | - if ( '' != $tag_list ) { |
|
46 | - $utility_text = __( 'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'auto-load-next-post' ); |
|
47 | - } elseif ( '' != $categories_list ) { |
|
48 | - $utility_text = __( 'This entry was posted in %1$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'auto-load-next-post' ); |
|
44 | + $tag_list = get_the_tag_list('', __(', ', 'auto-load-next-post')); |
|
45 | + if ('' != $tag_list) { |
|
46 | + $utility_text = __('This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'auto-load-next-post'); |
|
47 | + } elseif ('' != $categories_list) { |
|
48 | + $utility_text = __('This entry was posted in %1$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'auto-load-next-post'); |
|
49 | 49 | } else { |
50 | - $utility_text = __( 'This entry was posted by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'auto-load-next-post' ); |
|
50 | + $utility_text = __('This entry was posted by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'auto-load-next-post'); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | printf( |
54 | 54 | $utility_text, |
55 | 55 | $categories_list, |
56 | 56 | $tag_list, |
57 | - esc_url( get_permalink() ), |
|
58 | - the_title_attribute( 'echo=0' ), |
|
57 | + esc_url(get_permalink()), |
|
58 | + the_title_attribute('echo=0'), |
|
59 | 59 | get_the_author(), |
60 | - esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) |
|
60 | + esc_url(get_author_posts_url(get_the_author_meta('ID'))) |
|
61 | 61 | ); |
62 | 62 | ?> |
63 | 63 | |
64 | - <?php if ( get_the_author_meta( 'description' ) && ( ! function_exists( 'is_multi_author' ) || is_multi_author() ) ) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries ?> |
|
64 | + <?php if (get_the_author_meta('description') && ( ! function_exists('is_multi_author') || is_multi_author())) : // If a user has filled out their description and this is a multi-author blog, show a bio on their entries ?> |
|
65 | 65 | <div id="author-info"> |
66 | 66 | <div id="author-avatar"> |
67 | 67 | <?php |
68 | 68 | /** This filter is documented in author.php */ |
69 | - echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyeleven_author_bio_avatar_size', 68 ) ); |
|
69 | + echo get_avatar(get_the_author_meta('user_email'), apply_filters('twentyeleven_author_bio_avatar_size', 68)); |
|
70 | 70 | ?> |
71 | 71 | </div><!-- #author-avatar --> |
72 | 72 | <div id="author-description"> |
73 | - <h2><?php printf( __( 'About %s', 'auto-load-next-post' ), get_the_author() ); ?></h2> |
|
74 | - <?php the_author_meta( 'description' ); ?> |
|
73 | + <h2><?php printf(__('About %s', 'auto-load-next-post'), get_the_author()); ?></h2> |
|
74 | + <?php the_author_meta('description'); ?> |
|
75 | 75 | <div id="author-link"> |
76 | - <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> |
|
77 | - <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'auto-load-next-post' ), get_the_author() ); ?> |
|
76 | + <a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>" rel="author"> |
|
77 | + <?php printf(__('View all posts by %s <span class="meta-nav">→</span>', 'auto-load-next-post'), get_the_author()); ?> |
|
78 | 78 | </a> |
79 | 79 | </div><!-- #author-link --> |
80 | 80 | </div><!-- #author-description --> |
@@ -84,17 +84,17 @@ discard block |
||
84 | 84 | </article><!-- #post-<?php the_ID(); ?> --> |
85 | 85 | <?php |
86 | 86 | // Load content after the post content. |
87 | - do_action( 'alnp_load_after_content' ); |
|
87 | + do_action('alnp_load_after_content'); |
|
88 | 88 | |
89 | 89 | // End the loop. |
90 | 90 | endwhile; |
91 | 91 | |
92 | 92 | // Load content after the loop. |
93 | - do_action( 'alnp_load_after_loop' ); |
|
93 | + do_action('alnp_load_after_loop'); |
|
94 | 94 | |
95 | 95 | else : |
96 | 96 | |
97 | 97 | // Load content if there are no more posts. |
98 | - do_action( 'alnp_no_more_posts' ); |
|
98 | + do_action('alnp_no_more_posts'); |
|
99 | 99 | |
100 | 100 | 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,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 |