@@ -9,27 +9,27 @@ |
||
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 | 18 | // Make sure it is only a single site we are uninstalling from. |
19 | -if ( ! is_multisite() ) { |
|
20 | - $uninstall = get_option( 'auto_load_next_post_uninstall_data' ); |
|
19 | +if ( ! is_multisite()) { |
|
20 | + $uninstall = get_option('auto_load_next_post_uninstall_data'); |
|
21 | 21 | |
22 | - if ( ! empty( $uninstall ) ) { |
|
22 | + if ( ! empty($uninstall)) { |
|
23 | 23 | // Delete options |
24 | 24 | $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'auto_load_next_post_%'"); |
25 | 25 | } |
26 | 26 | } |
27 | 27 | |
28 | 28 | // Delete Install Date |
29 | -delete_site_option( 'auto_load_next_post_install_date' ); |
|
29 | +delete_site_option('auto_load_next_post_install_date'); |
|
30 | 30 | |
31 | 31 | // Delete Uninstall Data - Just to double check it has been removed. |
32 | -delete_option( 'auto_load_next_post_uninstall_data' ); |
|
32 | +delete_option('auto_load_next_post_uninstall_data'); |
|
33 | 33 | |
34 | 34 | // Clear any cached data that has been removed. |
35 | 35 | wp_cache_flush(); |
@@ -14,7 +14,7 @@ discard block |
||
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. |
@@ -41,9 +41,9 @@ discard block |
||
41 | 41 | * @since 1.4.10 |
42 | 42 | */ |
43 | 43 | public function __construct() { |
44 | - add_filter( 'auto_load_next_post_settings_tabs_array', array( $this, 'add_settings_page' ), 20 ); |
|
45 | - add_action( 'auto_load_next_post_settings_' . $this->id, array( $this, 'output' ) ); |
|
46 | - add_action( 'auto_load_next_post_settings_save_' . $this->id, array( $this, 'save' ) ); |
|
44 | + add_filter('auto_load_next_post_settings_tabs_array', array($this, 'add_settings_page'), 20); |
|
45 | + add_action('auto_load_next_post_settings_'.$this->id, array($this, 'output')); |
|
46 | + add_action('auto_load_next_post_settings_save_'.$this->id, array($this, 'save')); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | * @param array $pages |
77 | 77 | * @return array $pages |
78 | 78 | */ |
79 | - public function add_settings_page( $pages ) { |
|
79 | + public function add_settings_page($pages) { |
|
80 | 80 | $pages[$this->id] = $this->label; |
81 | 81 | |
82 | 82 | return $pages; |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | * @param array $pages |
91 | 91 | * @return array $pages |
92 | 92 | */ |
93 | - public function add_menu_page( $pages ) { |
|
93 | + public function add_menu_page($pages) { |
|
94 | 94 | $pages[$this->id] = $this->label; |
95 | 95 | |
96 | 96 | return $pages; |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | public function output() { |
117 | 117 | $settings = $this->get_settings(); |
118 | 118 | |
119 | - Auto_Load_Next_Post_Admin_Settings::output_fields( $settings ); |
|
119 | + Auto_Load_Next_Post_Admin_Settings::output_fields($settings); |
|
120 | 120 | } // END output() |
121 | 121 | |
122 | 122 | /** |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | |
132 | 132 | $settings = $this->get_settings(); |
133 | 133 | |
134 | - Auto_Load_Next_Post_Admin_Settings::save_fields( $settings, $current_tab ); |
|
134 | + Auto_Load_Next_Post_Admin_Settings::save_fields($settings, $current_tab); |
|
135 | 135 | } // END save() |
136 | 136 | |
137 | 137 | } // END class |
@@ -11,10 +11,10 @@ |
||
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 | 18 | <div class="notice notice-error auto-load-next-post-message"> |
19 | - <p><?php echo sprintf( __( 'Sorry, <strong>%s</strong> requires WordPress %s or higher. Please upgrade your WordPress setup.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), AUTO_LOAD_NEXT_POST_WP_VERSION_REQUIRE ); ?></p> |
|
19 | + <p><?php echo sprintf(__('Sorry, <strong>%s</strong> requires WordPress %s or higher. Please upgrade your WordPress setup.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), AUTO_LOAD_NEXT_POST_WP_VERSION_REQUIRE); ?></p> |
|
20 | 20 | </div> |
@@ -8,32 +8,32 @@ |
||
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 | // Load 'loop-templates/content-single.php' |
23 | - get_template_part( alnp_template_location() . 'content', 'single' ); |
|
23 | + get_template_part(alnp_template_location().'content', 'single'); |
|
24 | 24 | |
25 | 25 | // Load content after the post content. |
26 | - do_action( 'alnp_load_after_content' ); |
|
26 | + do_action('alnp_load_after_content'); |
|
27 | 27 | |
28 | 28 | // End the loop. |
29 | 29 | endwhile; |
30 | 30 | |
31 | 31 | // Load content after the loop. |
32 | - do_action( 'alnp_load_after_loop' ); |
|
32 | + do_action('alnp_load_after_loop'); |
|
33 | 33 | |
34 | 34 | else : |
35 | 35 | |
36 | 36 | // Load content if there are no more posts. |
37 | - do_action( 'alnp_no_more_posts' ); |
|
37 | + do_action('alnp_no_more_posts'); |
|
38 | 38 | |
39 | 39 | endif; // END if have_posts() |
@@ -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() |
@@ -8,40 +8,40 @@ |
||
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 more posts to load. |
17 | - while ( have_posts() ) : the_post(); |
|
17 | + while (have_posts()) : the_post(); |
|
18 | 18 | |
19 | 19 | $post_type = alnp_get_post_type(); // Post Type e.g. single |
20 | 20 | |
21 | 21 | // Load content before the post content. |
22 | - do_action( 'alnp_load_before_content' ); |
|
22 | + do_action('alnp_load_before_content'); |
|
23 | 23 | |
24 | 24 | // Load content before the post content for a specific post type. |
25 | - do_action( 'alnp_load_before_content_post_type_' . $post_type ); |
|
25 | + do_action('alnp_load_before_content_post_type_'.$post_type); |
|
26 | 26 | |
27 | 27 | // Load Make partial template for the correct post type. |
28 | - get_template_part( 'partials/content', $post_type ); |
|
28 | + get_template_part('partials/content', $post_type); |
|
29 | 29 | |
30 | 30 | // Load content after the post content for a specific post type. |
31 | - do_action( 'alnp_load_after_content_post_type_' . $post_type ); |
|
31 | + do_action('alnp_load_after_content_post_type_'.$post_type); |
|
32 | 32 | |
33 | 33 | // Load content before the post content. |
34 | - do_action( 'alnp_load_after_content' ); |
|
34 | + do_action('alnp_load_after_content'); |
|
35 | 35 | |
36 | 36 | // End the loop. |
37 | 37 | endwhile; |
38 | 38 | |
39 | 39 | // Load content after the loop. |
40 | - do_action( 'alnp_load_after_loop' ); |
|
40 | + do_action('alnp_load_after_loop'); |
|
41 | 41 | |
42 | 42 | else : |
43 | 43 | |
44 | 44 | // Load content if there are no more posts. |
45 | - do_action( 'alnp_no_more_posts' ); |
|
45 | + do_action('alnp_no_more_posts'); |
|
46 | 46 | |
47 | 47 | 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() |
@@ -16,69 +16,69 @@ |
||
16 | 16 | * @version 1.5.0 |
17 | 17 | */ |
18 | 18 | |
19 | -if ( have_posts() ) : |
|
19 | +if (have_posts()) : |
|
20 | 20 | |
21 | 21 | // Load content before the loop. |
22 | - do_action( 'alnp_load_before_loop' ); |
|
22 | + do_action('alnp_load_before_loop'); |
|
23 | 23 | |
24 | 24 | // Check that there are posts to load. |
25 | - while ( have_posts() ) : the_post(); |
|
25 | + while (have_posts()) : the_post(); |
|
26 | 26 | |
27 | 27 | $post_format = get_post_format(); // Post Format e.g. video |
28 | 28 | |
29 | 29 | $post_type = alnp_get_post_type(); // Post Type e.g. single |
30 | 30 | |
31 | 31 | // Load content before the post content. |
32 | - do_action( 'alnp_load_before_content' ); |
|
32 | + do_action('alnp_load_before_content'); |
|
33 | 33 | |
34 | 34 | // Load content before the post content for a specific post format. |
35 | - do_action( 'alnp_load_before_content_post_format_' . $post_format ); |
|
35 | + do_action('alnp_load_before_content_post_format_'.$post_format); |
|
36 | 36 | |
37 | 37 | // Load content before the post content for a specific post type. |
38 | - do_action( 'alnp_load_before_content_post_type_' . $post_type ); |
|
38 | + do_action('alnp_load_before_content_post_type_'.$post_type); |
|
39 | 39 | |
40 | - if ( false === $post_format ) { |
|
40 | + if (false === $post_format) { |
|
41 | 41 | /* |
42 | 42 | * Include the Post-Type-specific template for the content. |
43 | 43 | * content-___.php (where ___ is the Post Type name). |
44 | 44 | */ |
45 | - if ( locate_template( alnp_template_location() . 'content-' . $post_type . '.php') != '' ) { |
|
46 | - get_template_part( alnp_template_location() . 'content', $post_type ); |
|
45 | + if (locate_template(alnp_template_location().'content-'.$post_type.'.php') != '') { |
|
46 | + get_template_part(alnp_template_location().'content', $post_type); |
|
47 | 47 | } else { |
48 | 48 | // If no specific post type found then fallback to standard content.php file. |
49 | - get_template_part( alnp_template_location() . 'content' ); |
|
49 | + get_template_part(alnp_template_location().'content'); |
|
50 | 50 | } |
51 | 51 | } else { |
52 | 52 | /* |
53 | 53 | * Include the Post-Format-specific template for the content. |
54 | 54 | * called format-___.php (where ___ is the Post Format name). |
55 | 55 | */ |
56 | - if ( locate_template( alnp_template_location() . 'format-' . $post_format . '.php' ) != '' ) { |
|
57 | - get_template_part( alnp_template_location() . 'format', $post_format ); |
|
56 | + if (locate_template(alnp_template_location().'format-'.$post_format.'.php') != '') { |
|
57 | + get_template_part(alnp_template_location().'format', $post_format); |
|
58 | 58 | } else { |
59 | 59 | // If no format-{post-format}.php file found then fallback to content-{post-format}.php |
60 | - get_template_part( alnp_template_location() . 'content', $post_format ); |
|
60 | + get_template_part(alnp_template_location().'content', $post_format); |
|
61 | 61 | } |
62 | 62 | } |
63 | 63 | |
64 | 64 | // Load content after the post content for a specific post type. |
65 | - do_action( 'alnp_load_after_content_post_type_' . $post_type ); |
|
65 | + do_action('alnp_load_after_content_post_type_'.$post_type); |
|
66 | 66 | |
67 | 67 | // Load content after the post content for a specific post format. |
68 | - do_action( 'alnp_load_after_content_post_format_' . $post_format ); |
|
68 | + do_action('alnp_load_after_content_post_format_'.$post_format); |
|
69 | 69 | |
70 | 70 | // Load content after the post content. |
71 | - do_action( 'alnp_load_after_content' ); |
|
71 | + do_action('alnp_load_after_content'); |
|
72 | 72 | |
73 | 73 | // End the loop. |
74 | 74 | endwhile; |
75 | 75 | |
76 | 76 | // Load content after the loop. |
77 | - do_action( 'alnp_load_after_loop' ); |
|
77 | + do_action('alnp_load_after_loop'); |
|
78 | 78 | |
79 | 79 | else : |
80 | 80 | |
81 | 81 | // Load content if there are no more posts. |
82 | - do_action( 'alnp_no_more_posts' ); |
|
82 | + do_action('alnp_no_more_posts'); |
|
83 | 83 | |
84 | 84 | 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,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public static function init() { |
31 | 31 | // Add theme support and preset the theme selectors. |
32 | - add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) ); |
|
32 | + add_action('after_setup_theme', array(__CLASS__, 'add_theme_support')); |
|
33 | 33 | } // END init() |
34 | 34 | |
35 | 35 | /** |
@@ -40,12 +40,12 @@ discard block |
||
40 | 40 | * @static |
41 | 41 | */ |
42 | 42 | public static function add_theme_support() { |
43 | - add_theme_support( 'auto-load-next-post', array( |
|
43 | + add_theme_support('auto-load-next-post', array( |
|
44 | 44 | 'content_container' => '.site-content', |
45 | 45 | 'title_selector' => 'h1.entry-title', |
46 | 46 | 'navigation_container' => 'nav.post-navigation', |
47 | 47 | 'comments_container' => 'div#comments', |
48 | - ) ); |
|
48 | + )); |
|
49 | 49 | } // END add_theme_support() |
50 | 50 | |
51 | 51 | } // END class |