1 | <?php |
||||||||||
2 | /** |
||||||||||
3 | * Template part for displaying the comic series archive pages |
||||||||||
4 | * |
||||||||||
5 | * @package WordPress |
||||||||||
6 | * @subpackage Strip |
||||||||||
7 | */ |
||||||||||
8 | |||||||||||
9 | ?> |
||||||||||
10 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
||||||||||
0 ignored issues
–
show
Bug
introduced
by
![]() The function
post_class 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
![]() |
|||||||||||
11 | |||||||||||
12 | <div class="entry-wrap wrap clear"> |
||||||||||
13 | <?php 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
![]() |
|||||||||||
14 | |||||||||||
15 | <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'strip' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>" class="strip-featured-thumbnail"> |
||||||||||
0 ignored issues
–
show
The function
the_title_attribute 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
the_permalink 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
esc_attr 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
![]() |
|||||||||||
16 | <?php 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
![]() |
|||||||||||
17 | </a> |
||||||||||
18 | <?php endif; ?> |
||||||||||
19 | |||||||||||
20 | <footer class="entry-meta"> |
||||||||||
21 | <a href="<?php the_permalink(); ?>"><?php echo get_the_date(); ?></a> |
||||||||||
0 ignored issues
–
show
The function
get_the_date 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
![]() |
|||||||||||
22 | </footer><!-- .entry-meta --> |
||||||||||
23 | |||||||||||
24 | <header class="entry-header"> |
||||||||||
25 | |||||||||||
26 | <?php |
||||||||||
27 | edit_post_link( __( 'Edit Comic', '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
![]() |
|||||||||||
28 | |||||||||||
29 | if ( ! is_single() ) : |
||||||||||
0 ignored issues
–
show
The function
is_single 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 | the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); |
||||||||||
0 ignored issues
–
show
The function
get_permalink 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
esc_url 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
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
![]() |
|||||||||||
31 | else : |
||||||||||
32 | the_title( '<h1 class="entry-title">', '</h1>' ); |
||||||||||
33 | endif; ?> |
||||||||||
34 | |||||||||||
35 | </header><!-- .entry-header --> |
||||||||||
36 | |||||||||||
37 | <?php if ( is_search() ) : // Only display Excerpts for Search — implement search for custom taxonomies. ?> |
||||||||||
0 ignored issues
–
show
The function
is_search 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
![]() |
|||||||||||
38 | |||||||||||
39 | <div class="entry-summary"> |
||||||||||
40 | <?php the_excerpt(); ?> |
||||||||||
0 ignored issues
–
show
The function
the_excerpt 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
![]() |
|||||||||||
41 | </div><!-- .entry-summary --> |
||||||||||
42 | |||||||||||
43 | <?php else : ?> |
||||||||||
44 | |||||||||||
45 | <div class="entry-comic"> |
||||||||||
46 | <?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
![]() |
|||||||||||
47 | |||||||||||
48 | <?php endif; ?> |
||||||||||
49 | </div><!-- .entry-content --> |
||||||||||
50 | </div><!-- .entry-wrap --> |
||||||||||
51 | </article> |
||||||||||
52 |