Issues (631)

content-page.php (7 issues)

Labels
Severity
1
<?php
2
/**
3
 * The template used for displaying page content in page.php
4
 *
5
 * @package WordPress
6
 * @subpackage Strip
7
 */
8
9
?>
10
11
<article id="post-<?php the_ID(); ?>" >
0 ignored issues
show
The function the_ID 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

11
<article id="post-<?php /** @scrutinizer ignore-call */ the_ID(); ?>" >
Loading history...
12
	<div class="wrap">
13
	<?php
14
	if ( '' !== get_the_post_thumbnail() ) :
0 ignored issues
show
The function get_the_post_thumbnail 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

14
	if ( '' !== /** @scrutinizer ignore-call */ get_the_post_thumbnail() ) :
Loading history...
15
		the_post_thumbnail( 'strip-featured-image' );
0 ignored issues
show
The function the_post_thumbnail 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
		/** @scrutinizer ignore-call */ 
16
  the_post_thumbnail( 'strip-featured-image' );
Loading history...
16
	endif;
17
	?>
18
		<header class="entry-header">
19
	<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
0 ignored issues
show
The function the_title 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

19
	<?php /** @scrutinizer ignore-call */ the_title( '<h1 class="entry-title">', '</h1>' ); ?>
Loading history...
20
		</header><!-- .entry-header -->
21
22
	<footer class="entry-meta">
23
	<?php strip_entry_meta(); ?>
24
25
	<?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
0 ignored issues
show
The function edit_post_link 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

25
	<?php /** @scrutinizer ignore-call */ edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
Loading history...
The function __ 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

25
	<?php edit_post_link( /** @scrutinizer ignore-call */ __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?>
Loading history...
26
		</footer><!-- .entry-meta -->
27
28
		<div class="entry-content clear">
29
	<?php the_content(); ?>
0 ignored issues
show
The function the_content 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

29
	<?php /** @scrutinizer ignore-call */ the_content(); ?>
Loading history...
30
31
		</div><!-- .entry-content -->
32
	</div><!-- .entry-wrap -->
33
</article><!-- #post-## -->
34