Completed
Push — master ( 494c8f...845a20 )
by SILENT
02:16
created

content-page.php (1 issue)

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(); ?>" >
12
	<div class="wrap">
13
	<?php
14
	if ( '' !== get_the_post_thumbnail() ) :
15
		the_post_thumbnail( 'strip-featured-thumbnail' );
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-thumbnail' );
Loading history...
16
	endif;
17
	?>
18
		<header class="entry-header">
19
	<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
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>' ); ?>
26
		</footer><!-- .entry-meta -->
27
28
		<div class="entry-content clear">
29
	<?php the_content(); ?>
30
31
		</div><!-- .entry-content -->
32
	</div><!-- .entry-wrap -->
33
</article><!-- #post-## -->
34