[HELP] single.php (singlepost)

Status
Not open for further replies.

xiona_marie

Active Member
988
2010
189
10
can somebody teach how can i do this
5067587f94257Nb3n7T.jpg


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();
?>
 
Status
Not open for further replies.
Back
Top