Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Forum: Fixing WordPress
    In reply to: How THis is work?

    Thank you nclester…I am going to attempt this one though…after studying the code much closer I figured it out – the only problem I am having now is when I upload another users photo, after puting the code in the comments loop as it states above, the other users thumbnail is showing up as my own thumbnail, not theirs…so not sure what i am doing wrong on that one.

    Forum: Fixing WordPress
    In reply to: How THis is work?

    I need more lament instructions – I am sorry.

    I am assuming this is the Post Loop (index.php page?) you are talking about, but where exactly does or userphoto_the_author_thumbnail() go in the code?

    <?php get_header(); ?>

    <div id=”container”>

    <?php if(have_posts()): ?><?php while(have_posts()):the_post(); ?>

    <div class=”post”>

    <h2>” title=”<?php the_title(); ?>”><?php the_title(); ?></h2>

    <div class=”postinfo”>
    <?php _e(‘Posted on’); ?> <span class=”postdate”><?php the_time(‘F jS, Y’) ?></span> <?php _e(‘by’); ?> <?php the_author() ?>
    </div>

    <div class=”entry”>

    <?php the_content(); ?>

    <p class=”postmetadata”>
    <?php _e(‘Tags:’); ?> <?php the_category(‘, ‘) ?> <?php edit_post_link(‘Edit’, ‘ | ‘, ”); ?> // <?php comments_popup_link(‘Add Comment »’, ‘1 Comment »’, ‘% Comments »’); ?>
    </p>

    </div>

    </div>

    <?php endwhile; ?>

    <div class=”navigation”>
    <?php posts_nav_link(); ?>
    </div>

    <?php else: ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>

    <h2><?php _e(‘Not Found’); ?></h2>

    </div>

    <?php endif; ?>

    </div>

    <?php get_sidebar(); ?>

    <?php get_footer() ?>

    </div></body>
    </html>

Viewing 2 replies - 1 through 2 (of 2 total)