Completed
Branch master (bc147d)
by
unknown
02:08
created
includes/theme-support/class-alnp-twentyten.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twentyeleven.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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">&larr;</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">&larr;</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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twentynineteen.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
template/theme-support/twentynineteen/content-alnp.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -8,41 +8,41 @@
 block discarded – undo
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()
Please login to merge, or discard this patch.
template/theme-support/twentynineteen/content-page.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 	<?php twentynineteen_post_thumbnail(); ?>
@@ -11,21 +11,21 @@  discard block
 block discarded – undo
11 11
 
12 12
 		wp_link_pages(
13 13
 			array(
14
-				'before' => '<div class="page-links">' . __( 'Pages:', 'twentynineteen' ),
14
+				'before' => '<div class="page-links">'.__('Pages:', 'twentynineteen'),
15 15
 				'after'  => '</div>',
16 16
 			)
17 17
 		);
18 18
 		?>
19 19
 	</div><!-- .entry-content -->
20 20
 
21
-	<?php if ( get_edit_post_link() ) : ?>
21
+	<?php if (get_edit_post_link()) : ?>
22 22
 		<footer class="entry-footer">
23 23
 			<?php
24 24
 			edit_post_link(
25 25
 				sprintf(
26 26
 					wp_kses(
27 27
 						/* translators: %s: Name of current post. Only visible to screen readers */
28
-						__( 'Edit <span class="screen-reader-text">%s</span>', 'twentynineteen' ),
28
+						__('Edit <span class="screen-reader-text">%s</span>', 'twentynineteen'),
29 29
 						array(
30 30
 							'span' => array(
31 31
 								'class' => array(),
Please login to merge, or discard this patch.
template/theme-support/twentynineteen/content-single.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 	<?php twentynineteen_post_thumbnail(); ?>
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
 		wp_link_pages(
13 13
 			array(
14
-				'before' => '<div class="page-links">' . __( 'Pages:', 'twentynineteen' ),
14
+				'before' => '<div class="page-links">'.__('Pages:', 'twentynineteen'),
15 15
 				'after'  => '</div>',
16 16
 			)
17 17
 		);
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
 		<?php twentynineteen_entry_footer(); ?>
23 23
 	</footer><!-- .entry-footer -->
24 24
 
25
-	<?php if ( ! is_singular( 'attachment' ) ) : ?>
26
-	<?php get_template_part( 'template-parts/post/author', 'bio' ); ?>
25
+	<?php if ( ! is_singular('attachment')) : ?>
26
+	<?php get_template_part('template-parts/post/author', 'bio'); ?>
27 27
 	<?php endif; ?>
28 28
 
29 29
 </article><!-- #post-${ID} -->
30 30
\ No newline at end of file
Please login to merge, or discard this patch.