@@ -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 |
@@ -10,7 +10,7 @@ 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 | ?> |
@@ -19,25 +19,25 @@ discard block |
||
| 19 | 19 | <a class="alnp-banner" href="<?php echo AUTO_LOAD_NEXT_POST_STORE_URL; ?>?utm_source=plugin&utm_medium=alnp-banner&utm_campaign=alnp-settings-page"></a> |
| 20 | 20 | |
| 21 | 21 | <div class="alnp-upgrade-details"> |
| 22 | - <h1><?php esc_html_e( 'Pro Coming Soon', 'auto-load-next-post' ); ?></h1> |
|
| 22 | + <h1><?php esc_html_e('Pro Coming Soon', 'auto-load-next-post'); ?></h1> |
|
| 23 | 23 | |
| 24 | 24 | <ul> |
| 25 | - <li><?php echo wptexturize( esc_html__( 'Load the Next Post or Next Post with same Category or New Posts or Related Posts or by Custom Query', 'auto-load-next-post' ) ); ?></li> |
|
| 26 | - <li><?php echo wptexturize( esc_html__( 'Page and Media Attachment Support', 'auto-load-next-post' ) ); ?></li> |
|
| 27 | - <li><?php echo wptexturize( esc_html__( 'Custom Post Type Support', 'auto-load-next-post' ) ); ?></li> |
|
| 28 | - <li><?php echo wptexturize( esc_html__( 'Paginated Posts Supported', 'auto-load-next-post' ) ); ?></li> |
|
| 29 | - <li><?php echo wptexturize( esc_html__( 'Exclude Post Formats', 'auto-load-next-post' ) ); ?></li> |
|
| 30 | - <li><?php echo wptexturize( esc_html__( 'Limit Posts per Session', 'auto-load-next-post' ) ); ?></li> |
|
| 31 | - <li><?php echo wptexturize( esc_html__( 'Query Posts by Category and Tag', 'auto-load-next-post' ) ); ?></li> |
|
| 32 | - <li><?php echo wptexturize( esc_html__( 'Exclude User Roles and Specific Users', 'auto-load-next-post' ) ); ?></li> |
|
| 33 | - <li><?php echo wptexturize( esc_html__( 'Pre-Query Posts Ready to Load', 'auto-load-next-post' ) ); ?></li> |
|
| 34 | - <li><?php echo wptexturize( esc_html__( 'Hide Comments and Show by Toggle Button', 'auto-load-next-post' ) ); ?></li> |
|
| 35 | - <li><?php echo wptexturize( sprintf( esc_html__( 'Multilingual Support for %1$s and %2$s', 'auto-load-next-post' ), 'WPML', 'Polylang' ) ); ?></li> |
|
| 36 | - <li><?php echo wptexturize( esc_html__( 'Email Support', 'auto-load-next-post' ) ); ?></li> |
|
| 25 | + <li><?php echo wptexturize(esc_html__('Load the Next Post or Next Post with same Category or New Posts or Related Posts or by Custom Query', 'auto-load-next-post')); ?></li> |
|
| 26 | + <li><?php echo wptexturize(esc_html__('Page and Media Attachment Support', 'auto-load-next-post')); ?></li> |
|
| 27 | + <li><?php echo wptexturize(esc_html__('Custom Post Type Support', 'auto-load-next-post')); ?></li> |
|
| 28 | + <li><?php echo wptexturize(esc_html__('Paginated Posts Supported', 'auto-load-next-post')); ?></li> |
|
| 29 | + <li><?php echo wptexturize(esc_html__('Exclude Post Formats', 'auto-load-next-post')); ?></li> |
|
| 30 | + <li><?php echo wptexturize(esc_html__('Limit Posts per Session', 'auto-load-next-post')); ?></li> |
|
| 31 | + <li><?php echo wptexturize(esc_html__('Query Posts by Category and Tag', 'auto-load-next-post')); ?></li> |
|
| 32 | + <li><?php echo wptexturize(esc_html__('Exclude User Roles and Specific Users', 'auto-load-next-post')); ?></li> |
|
| 33 | + <li><?php echo wptexturize(esc_html__('Pre-Query Posts Ready to Load', 'auto-load-next-post')); ?></li> |
|
| 34 | + <li><?php echo wptexturize(esc_html__('Hide Comments and Show by Toggle Button', 'auto-load-next-post')); ?></li> |
|
| 35 | + <li><?php echo wptexturize(sprintf(esc_html__('Multilingual Support for %1$s and %2$s', 'auto-load-next-post'), 'WPML', 'Polylang')); ?></li> |
|
| 36 | + <li><?php echo wptexturize(esc_html__('Email Support', 'auto-load-next-post')); ?></li> |
|
| 37 | 37 | </ul> |
| 38 | 38 | |
| 39 | 39 | <p> |
| 40 | - <a href="<?php echo AUTO_LOAD_NEXT_POST_STORE_URL; ?>pro/?utm_source=plugin&utm_medium=link&utm_campaign=alnp-settings-page"><?php esc_html_e( 'Visit autoloadnextpost.com →', 'auto-load-next-post' ); ?></a> |
|
| 40 | + <a href="<?php echo AUTO_LOAD_NEXT_POST_STORE_URL; ?>pro/?utm_source=plugin&utm_medium=link&utm_campaign=alnp-settings-page"><?php esc_html_e('Visit autoloadnextpost.com →', 'auto-load-next-post'); ?></a> |
|
| 41 | 41 | </p> |
| 42 | 42 | |
| 43 | 43 | </div> |
@@ -45,33 +45,33 @@ discard block |
||
| 45 | 45 | <div class="block"> |
| 46 | 46 | <div class="inner-block"> |
| 47 | 47 | <form method="post" action="https://sebastiendumont.us1.list-manage.com/subscribe/post?u=48ead612ad85b23fe2239c6e3&id=79e97b5275" name="mc-embedded-subscribe-form" target="_blank" class="subscribe block"> |
| 48 | - <h2><?php esc_html_e( 'Sign up to pre-order first', 'auto-load-next-post' ); ?></h2> |
|
| 48 | + <h2><?php esc_html_e('Sign up to pre-order first', 'auto-load-next-post'); ?></h2> |
|
| 49 | 49 | |
| 50 | 50 | <p class="intro"> |
| 51 | - <?php echo wptexturize( esc_html__( 'Submit your name and email and be the first to know when you can pre-order Auto Load Next Post Pro and keep up to date with my developments plus a 10% discount.', 'auto-load-next-post' ) ); ?> |
|
| 51 | + <?php echo wptexturize(esc_html__('Submit your name and email and be the first to know when you can pre-order Auto Load Next Post Pro and keep up to date with my developments plus a 10% discount.', 'auto-load-next-post')); ?> |
|
| 52 | 52 | </p> |
| 53 | 53 | |
| 54 | 54 | <div class="field"> |
| 55 | - <input type="email" name="EMAIL" value="" placeholder="<?php esc_html_e( 'Your Email Address', 'auto-load-next-post' ); ?>"/> |
|
| 55 | + <input type="email" name="EMAIL" value="" placeholder="<?php esc_html_e('Your Email Address', 'auto-load-next-post'); ?>"/> |
|
| 56 | 56 | </div> |
| 57 | 57 | |
| 58 | 58 | <div class="field"> |
| 59 | - <input type="text" name="FNAME" value="" placeholder="<?php esc_html_e( 'First Name', 'auto-load-next-post' ); ?>"/> |
|
| 59 | + <input type="text" name="FNAME" value="" placeholder="<?php esc_html_e('First Name', 'auto-load-next-post'); ?>"/> |
|
| 60 | 60 | </div> |
| 61 | 61 | |
| 62 | 62 | <div class="field"> |
| 63 | - <input type="text" name="LNAME" value="" placeholder="<?php esc_html_e( 'Last Name', 'auto-load-next-post' ); ?>"/> |
|
| 63 | + <input type="text" name="LNAME" value="" placeholder="<?php esc_html_e('Last Name', 'auto-load-next-post'); ?>"/> |
|
| 64 | 64 | </div> |
| 65 | 65 | |
| 66 | 66 | <input type="hidden" name="group[35169][1]" value="1"> |
| 67 | 67 | |
| 68 | 68 | <div class="field submit-button"> |
| 69 | 69 | <div style="position: absolute; left: -9999px;" aria-hidden="true"><input type="text" name="b_48ead612ad85b23fe2239c6e3_79e97b5275" tabindex="-1" value=""></div> |
| 70 | - <input type="submit" name="subscribe" id="mc-embedded-subscribe" class="button" value="<?php esc_html_e( 'Sign me up', 'auto-load-next-post' ); ?>"/> |
|
| 70 | + <input type="submit" name="subscribe" id="mc-embedded-subscribe" class="button" value="<?php esc_html_e('Sign me up', 'auto-load-next-post'); ?>"/> |
|
| 71 | 71 | </div> |
| 72 | 72 | |
| 73 | 73 | <p class="promise"> |
| 74 | - <?php esc_html_e( 'I promise I will not use your email for anything else and you can unsubscribe with 1-click anytime.', 'auto-load-next-post' ); ?> |
|
| 74 | + <?php esc_html_e('I promise I will not use your email for anything else and you can unsubscribe with 1-click anytime.', 'auto-load-next-post'); ?> |
|
| 75 | 75 | </p> |
| 76 | 76 | |
| 77 | 77 | </form> |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | </div> |
| 80 | 80 | |
| 81 | 81 | <div class="block credits"> |
| 82 | - <h3><?php esc_html_e( 'Created & maintained by', 'auto-load-next-post' ); ?></h3> |
|
| 82 | + <h3><?php esc_html_e('Created & maintained by', 'auto-load-next-post'); ?></h3> |
|
| 83 | 83 | <div class="inner-block"> |
| 84 | 84 | <ul> |
| 85 | 85 | <li> |
@@ -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 |