Passed
Push — master ( e51c9a...41921a )
by Chris
04:16
created

partials/content-custom.php (2 issues)

1
<?php
2
/**
3
 * The template used for displaying page content in single.php (custom post type)
4
 *
5
 * @package lsx
6
 */
7
8
?>
9
10
<?php lsx_entry_before(); ?>
11
12
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
13
14
	<?php lsx_entry_top(); ?>
15
16
	<div class="entry-content">
17
		<?php
18
			the_content();
19
20
			wp_link_pages( array(
0 ignored issues
show
The opening parenthesis of a multi-line function call should be the last content on the line.
Loading history...
21
				'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
22
				'after'       => '</div></div>',
23
				'link_before' => '<span>',
24
				'link_after'  => '</span>',
25
			) );
0 ignored issues
show
For multi-line function calls, the closing parenthesis should be on a new line.

If a function call spawns multiple lines, the coding standard suggests to move the closing parenthesis to a new line:

someFunctionCall(
    $firstArgument,
    $secondArgument,
    $thirdArgument
); // Closing parenthesis on a new line.
Loading history...
26
		?>
27
	</div><!-- .entry-content -->
28
29
	<?php lsx_entry_bottom(); ?>
30
31
</article><!-- #post-## -->
32
33
<?php
34
lsx_entry_after();
35