Passed
Push — dev ( 396b23...3b84be )
by Eric
02:58
created
Labels
Severity
1
<?php
2
/**
3
 * The template for displaying all pages.
4
 *
5
 * This is the template that displays all pages by default.
6
 * Please note that this is the WordPress construct of pages
7
 * and that other 'pages' on your WordPress site may use a
8
 * different template.
9
 *
10
 * @link https://codex.wordpress.org/Template_Hierarchy
11
 *
12
 * @package bitsy
13
 */
14
15
while ( have_posts() ) : the_post();
1 ignored issue
show
The function the_post was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

15
while ( have_posts() ) : /** @scrutinizer ignore-call */ the_post();
Loading history...
16
17
	get_template_part( 'components/page/content', 'page' );
18
19
endwhile; // End of the loop.
20