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
Bug
introduced
by
![]() |
|||||||
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
![]() |
|||||||
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
![]() |
|||||||
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
![]() |
|||||||
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
![]() 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
![]() |
|||||||
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
![]() |
|||||||
30 | |||||||
31 | </div><!-- .entry-content --> |
||||||
32 | </div><!-- .entry-wrap --> |
||||||
33 | </article><!-- #post-## --> |
||||||
34 |