Issues (631)

content-series.php (17 issues)

Labels
Severity
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
The function the_ID 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 ignore-call  annotation

10
<article id="post-<?php /** @scrutinizer ignore-call */ the_ID(); ?>" <?php post_class(); ?>>
Loading history...
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 ignore-call  annotation

10
<article id="post-<?php the_ID(); ?>" <?php /** @scrutinizer ignore-call */ post_class(); ?>>
Loading history...
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 ignore-call  annotation

13
		<?php if ( '' !== /** @scrutinizer ignore-call */ get_the_post_thumbnail() ) : ?>
Loading history...
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 ignore-call  annotation

15
			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'strip' ), /** @scrutinizer ignore-call */ the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>" class="strip-featured-thumbnail">
Loading history...
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 ignore-call  annotation

15
			<a href="<?php /** @scrutinizer ignore-call */ 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">
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 ignore-call  annotation

15
			<a href="<?php the_permalink(); ?>" title="<?php echo /** @scrutinizer ignore-call */ esc_attr( sprintf( __( 'Permalink to %s', 'strip' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>" class="strip-featured-thumbnail">
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 ignore-call  annotation

15
			<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( /** @scrutinizer ignore-call */ __( 'Permalink to %s', 'strip' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="<?php the_ID(); ?>" class="strip-featured-thumbnail">
Loading history...
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 ignore-call  annotation

16
				<?php /** @scrutinizer ignore-call */ the_post_thumbnail( 'strip-featured-image' ); ?>
Loading history...
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 ignore-call  annotation

21
			<a href="<?php the_permalink(); ?>"><?php echo /** @scrutinizer ignore-call */ get_the_date(); ?></a>
Loading history...
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 ignore-call  annotation

27
			/** @scrutinizer ignore-call */ 
28
   edit_post_link( __( 'Edit Comic', 'strip' ), '<span class="edit-link">', '</span>' );
Loading history...
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 ignore-call  annotation

29
			if ( ! /** @scrutinizer ignore-call */ is_single() ) :
Loading history...
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 ignore-call  annotation

30
				the_title( '<h1 class="entry-title"><a href="' . esc_url( /** @scrutinizer ignore-call */ get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
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 ignore-call  annotation

30
				the_title( '<h1 class="entry-title"><a href="' . /** @scrutinizer ignore-call */ esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
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 ignore-call  annotation

30
				/** @scrutinizer ignore-call */ 
31
    the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
Loading history...
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 ignore-call  annotation

37
	<?php if ( /** @scrutinizer ignore-call */ is_search() ) : // Only display Excerpts for Search — implement search for custom taxonomies. ?>
Loading history...
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 ignore-call  annotation

40
			<?php /** @scrutinizer ignore-call */ the_excerpt(); ?>
Loading history...
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 ignore-call  annotation

46
		<?php /** @scrutinizer ignore-call */ the_content(); ?>
Loading history...
47
48
		<?php endif; ?>
49
		</div><!-- .entry-content -->
50
	</div><!-- .entry-wrap -->
51
</article>
52