move comments template function into partials
This commit is contained in:
parent
8323580a60
commit
cfec645e2c
|
@ -18,3 +18,4 @@
|
|||
<br class="clear-margins" />
|
||||
</div>
|
||||
<div class="post-foot"></div>
|
||||
<?php comments_template(); ?>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<div class="post-comic-head"></div>
|
||||
<div class="post-comic" id="post-<?php the_ID() ?>">
|
||||
<div class="comicdate">
|
||||
<?php include('nav.inc') ?>
|
||||
<?php include_partial('nav') ?>
|
||||
<?php the_time('F jS, Y') ?>
|
||||
</div>
|
||||
<?php if (get_option('comicpress-enable-storyline-support') == 1) { ?>
|
||||
|
@ -19,3 +19,4 @@
|
|||
<br class="clear-margins" />
|
||||
</div>
|
||||
<div class="post-comic-foot"></div>
|
||||
<?php comments_template(); ?>
|
|
@ -26,8 +26,6 @@
|
|||
} else {
|
||||
include_partial('single-blog-post');
|
||||
}
|
||||
|
||||
comments_template();
|
||||
}
|
||||
} else {
|
||||
include_partial('single-no-matches');
|
||||
|
|
Loading…
Reference in New Issue