Code Duplication    Length = 5-5 lines in 7 locations

content-comic.php 1 location

@@ 48-52 (lines=5) @@
45
46
		<?php	edit_post_link( __( 'Edit Comic', 'strip' ), '<span class="edit-link">', '</span>' );
47
48
		if ( ! is_single() ) :
49
			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
50
			else :
51
					the_title( '<h1 class="entry-title">', '</h1>' );
52
			endif; ?>
53
54
	</header><!-- .entry-header -->
55

content-series.php 1 location

@@ 29-33 (lines=5) @@
26
			<?php
27
			edit_post_link( __( 'Edit Comic', 'strip' ), '<span class="edit-link">', '</span>' );
28
29
			if ( ! is_single() ) :
30
				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
31
			else :
32
					the_title( '<h1 class="entry-title">', '</h1>' );
33
			endif; ?>
34
35
	</header><!-- .entry-header -->
36

content-gallery.php 1 location

@@ 26-30 (lines=5) @@
23
	<?php
24
				$categories_list = get_the_category_list( __( ', ', 'strip' ) );
25
26
	if ( ! is_single() ) :
27
		the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
28
	else :
29
					the_title( '<h1 class="entry-title">', '</h1>' );
30
	endif; ?>
31
32
		<div class="entry-content clear">
33
	<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'strip' ) ); ?>

content-image.php 1 location

@@ 23-27 (lines=5) @@
20
			<?php
21
				$categories_list = get_the_category_list( __( ', ', 'strip' ) );
22
23
			if ( ! is_single() ) :
24
				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
25
			else :
26
					the_title( '<h1 class="entry-title">', '</h1>' );
27
			endif;
28
			?>
29
			</header><!-- .entry-header -->
30

content-audio.php 1 location

@@ 19-23 (lines=5) @@
16
				<?php
17
					$categories_list = get_the_category_list( __( ', ', 'strip' ) );
18
19
				if ( ! is_single() ) :
20
					the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
21
				else :
22
						the_title( '<h1 class="entry-title">', '</h1>' );
23
				endif;
24
				?>
25
			</header><!-- .entry-header -->
26

content-video.php 1 location

@@ 28-32 (lines=5) @@
25
		<?php
26
			$categories_list = get_the_category_list( __( ', ', 'strip' ) );
27
28
		if ( ! is_single() ) :
29
			the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
30
		else :
31
			the_title( '<h1 class="entry-title">', '</h1>' );
32
		endif;
33
		?>
34
	</header><!-- .entry-header -->
35
	<br>

content.php 1 location

@@ 27-31 (lines=5) @@
24
			if ( $categories_list && strip_categorized_blog() ) {
25
				echo '<span class="categories-links">' . $categories_list . '</span>';
26
			}
27
			if ( ! is_single() ) :
28
				the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' );
29
			else :
30
					the_title( '<h1 class="entry-title">', '</h1>' );
31
			endif;
32
			?>
33
		</header><!-- .entry-header -->
34