SilentComics /
Strip
| 1 | <?php |
||||||||||||
| 2 | /** |
||||||||||||
| 3 | * Template part for displaying the quote post format |
||||||||||||
| 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
Loading history...
|
|||||||||||||
| 12 | <div class="wrap"> |
||||||||||||
| 13 | <header class="entry-header"> |
||||||||||||
| 14 | <?php |
||||||||||||
| 15 | $categories_list = get_the_category_list( __( ', ', 'strip' ) ); ?> |
||||||||||||
|
0 ignored issues
–
show
The function
get_the_category_list 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
__ 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...
|
|||||||||||||
| 16 | |||||||||||||
| 17 | </header><!-- .entry-header --> |
||||||||||||
| 18 | |||||||||||||
| 19 | <footer class="entry-meta"> |
||||||||||||
| 20 | |||||||||||||
| 21 | <span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'quote' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'quote' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'quote' ) ); ?></a></span> |
||||||||||||
|
0 ignored issues
–
show
The function
get_post_format_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
Loading history...
The function
esc_html 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
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
Loading history...
The function
get_post_format_string 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
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...
|
|||||||||||||
| 22 | |||||||||||||
| 23 | <?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
Loading history...
|
|||||||||||||
| 24 | </footer><!-- .entry-meta --> |
||||||||||||
| 25 | |||||||||||||
| 26 | <div class="entry-content"> |
||||||||||||
| 27 | <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'strip' ) ); ?> |
||||||||||||
|
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
Loading history...
|
|||||||||||||
| 28 | |||||||||||||
| 29 | </div><!-- .entry-content --> |
||||||||||||
| 30 | </div><!-- .entry-wrap --> |
||||||||||||
| 31 | </article><!-- #post-## --> |
||||||||||||
| 32 |