SilentComics /
Strip
| 1 | <?php |
||||||||
| 2 | /** |
||||||||
| 3 | * Comics Archive by titles |
||||||||
| 4 | * |
||||||||
| 5 | * Used to display comic Archives by titles only. |
||||||||
| 6 | * |
||||||||
| 7 | * @package WordPress |
||||||||
| 8 | * @subpackage Strip |
||||||||
| 9 | */ |
||||||||
| 10 | |||||||||
| 11 | get_header(); ?> |
||||||||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||||||||
| 12 | |||||||||
| 13 | <section id="primary" |
||||||||
| 14 | <main id="content" role="main"> |
||||||||
| 15 | |||||||||
| 16 | <header class="entry-header"> |
||||||||
| 17 | |||||||||
| 18 | <?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?> |
||||||||
|
0 ignored issues
–
show
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
Loading history...
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
Loading history...
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
Loading history...
|
|||||||||
| 19 | |||||||||
| 20 | <?php // call the series by title and list them. ?> |
||||||||
| 21 | |||||||||
| 22 | <h2 class="series-title"> |
||||||||
| 23 | |||||||||
| 24 | <?php |
||||||||
| 25 | $args = array( |
||||||||
| 26 | 'post_type' => 'comic', |
||||||||
| 27 | 'title_li' => esc_html_e( '', 'strip' ), |
||||||||
|
0 ignored issues
–
show
The function
esc_html_e 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
Loading history...
|
|||||||||
| 28 | ); |
||||||||
| 29 | wp_list_pages( $args ); |
||||||||
|
0 ignored issues
–
show
The function
wp_list_pages 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
Loading history...
|
|||||||||
| 30 | ?> |
||||||||
| 31 | </h2> |
||||||||
| 32 | <br> |
||||||||
| 33 | |||||||||
| 34 | </main><!-- #content --> |
||||||||
| 35 | </section><!-- #primary --> |
||||||||
| 36 | |||||||||
| 37 | <?php get_sidebar(); ?> |
||||||||
|
0 ignored issues
–
show
The function
get_sidebar 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
Loading history...
|
|||||||||
| 38 | <?php get_footer(); ?> |
||||||||
|
0 ignored issues
–
show
The function
get_footer 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
Loading history...
|
|||||||||
| 39 |