mirror of
https://github.com/Frumph/comicpress.git
synced 2026-01-31 02:05:17 +01:00
41 lines
614 B
PHP
41 lines
614 B
PHP
<?php
|
|
if ( ! is_home() && ! is_archive() && ! is_search() ) {
|
|
comicpress_display_post_thumbnail( 'large' );
|
|
?>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<div class="post-content">
|
|
|
|
<?php
|
|
if ( is_home() || is_archive() || is_search()) comicpress_display_post_thumbnail( 'thumbnail' );
|
|
?>
|
|
|
|
<div class="entry">
|
|
|
|
<?php
|
|
the_content();
|
|
?>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
edit_post_link( __( 'Edit this post.', 'comicpress' ), '', '' );
|
|
?>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</article>
|