@@ -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() |
@@ -76,9 +76,11 @@ |
||
76 | 76 | // Load content after the loop. |
77 | 77 | do_action( 'alnp_load_after_loop' ); |
78 | 78 | |
79 | -else : |
|
79 | +else { |
|
80 | + : |
|
80 | 81 | |
81 | 82 | // Load content if there are no more posts. |
82 | 83 | do_action( 'alnp_no_more_posts' ); |
84 | +} |
|
83 | 85 | |
84 | 86 | 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 |
@@ -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,13 +29,13 @@ 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_twentythirteen_post_navigation' ), 1, 10 ); |
|
35 | + add_action('alnp_load_after_content', array(__CLASS__, 'alnp_twentythirteen_post_navigation'), 1, 10); |
|
36 | 36 | |
37 | 37 | // Add theme support and preset the theme selectors. |
38 | - add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) ); |
|
38 | + add_action('after_setup_theme', array(__CLASS__, 'add_theme_support')); |
|
39 | 39 | } // END init() |
40 | 40 | |
41 | 41 | /** |
@@ -56,12 +56,12 @@ discard block |
||
56 | 56 | * @static |
57 | 57 | */ |
58 | 58 | public static function add_theme_support() { |
59 | - add_theme_support( 'auto-load-next-post', array( |
|
59 | + add_theme_support('auto-load-next-post', array( |
|
60 | 60 | 'content_container' => '#content', |
61 | 61 | 'title_selector' => 'h1.entry-title', |
62 | 62 | 'navigation_container' => 'nav.post-navigation', |
63 | 63 | 'comments_container' => 'div#comments', |
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,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_make_template_redirect' ) ); |
|
32 | + add_filter('alnp_template_redirect', array(__CLASS__, 'alnp_make_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_make_template_redirect() { |
46 | - return AUTO_LOAD_NEXT_POST_FILE_PATH . '/template/theme-support/make/content-alnp.php'; |
|
46 | + return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/make/content-alnp.php'; |
|
47 | 47 | } // END alnp_make_template_redirect() |
48 | 48 | |
49 | 49 | /** |
@@ -54,12 +54,12 @@ 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' => 'main.site-main', |
59 | 59 | 'title_selector' => 'h1.entry-title', |
60 | 60 | 'navigation_container' => 'nav.post-navigation', |
61 | 61 | 'comments_container' => 'div#comments', |
62 | - ) ); |
|
62 | + )); |
|
63 | 63 | } // END add_theme_support() |
64 | 64 | |
65 | 65 | } // 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/twenty-ten/content-alnp.php'; |
|
46 | + return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/twenty-ten/content-alnp.php'; |
|
47 | 47 | } // END alnp_twentyten_template_redirect() |
48 | 48 | |
49 | 49 | /** |
@@ -54,12 +54,12 @@ 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 | + )); |
|
63 | 63 | } // END add_theme_support() |
64 | 64 | |
65 | 65 | } // 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,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' => 'main.site-main', |
45 | 45 | 'title_selector' => 'h1.entry-title', |
46 | 46 | 'navigation_container' => 'nav.post-navigation', |
47 | 47 | 'comments_container' => 'section#comments', |
48 | - ) ); |
|
48 | + )); |
|
49 | 49 | } // END add_theme_support() |
50 | 50 | |
51 | 51 | } // 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/twenty-eleven/content-alnp.php'; |
|
67 | + return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/twenty-eleven/content-alnp.php'; |
|
68 | 68 | } // END alnp_twentyeleven_template_redirect() |
69 | 69 | |
70 | 70 | /** |
@@ -75,12 +75,12 @@ 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 | + )); |
|
84 | 84 | } // END add_theme_support() |
85 | 85 | |
86 | 86 | } // 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_location', array( __CLASS__, 'alnp_understrap_template_location' ) ); |
|
35 | + add_filter('alnp_template_location', array(__CLASS__, 'alnp_understrap_template_location')); |
|
36 | 36 | } // END init() |
37 | 37 | |
38 | 38 | /** |
@@ -53,12 +53,12 @@ discard block |
||
53 | 53 | * @static |
54 | 54 | */ |
55 | 55 | public static function add_theme_support() { |
56 | - add_theme_support( 'auto-load-next-post', array( |
|
56 | + add_theme_support('auto-load-next-post', array( |
|
57 | 57 | 'content_container' => 'main.site-main', |
58 | 58 | 'title_selector' => 'h1.entry-title', |
59 | 59 | 'navigation_container' => 'nav.post-navigation', |
60 | 60 | 'comments_container' => 'div#comments', |
61 | - ) ); |
|
61 | + )); |
|
62 | 62 | } // END add_theme_support() |
63 | 63 | |
64 | 64 | } // 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,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' => 'main.site-main', |
45 | 45 | 'title_selector' => 'h1.entry-title', |
46 | 46 | 'navigation_container' => 'nav.post-navigation', |
47 | 47 | 'comments_container' => 'section#comments', |
48 | - ) ); |
|
48 | + )); |
|
49 | 49 | } // END add_theme_support() |
50 | 50 | |
51 | 51 | } // END class |