xiona_marie
Active Member
can somebody teach how can i do this
i want to add something like this at the bottom of every post.
actual site:
http://www.naughtyblog.org/teen-fidelity-melody-jordan/
here is my single.php but i dont know actually how to put it there
i want to add something like this at the bottom of every post.
actual site:
http://www.naughtyblog.org/teen-fidelity-melody-jordan/
here is my single.php but i dont know actually how to put it there
Code:
<?php
get_header();
if (is_active_sidebar('blog')) get_sidebar('blog');
if (have_posts()) {
while (have_posts()) : the_post();
easel_display_post();
endwhile;
} else { ?>
<div <?php post_class(); ?>>
<div class="post-head"></div>
<div class="post">
<p><?php _e('Sorry, post is not found.','easel'); ?></p>
<div class="clear"></div>
</div>
<div class="post-foot"></div>
</div>
<?php
}
get_footer();
?>