These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
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() ) : |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
15 | the_post_thumbnail( 'strip-featured-thumbnail' ); |
||
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 |