Forum Replies Created

Viewing 3 replies - 31 through 33 (of 33 total)
  • Thread Starter manila

    (@manila)

    Yes, I did so. I have an audrey.jpg, audrey.png and audrey.gif uploaded in wp-content/images – and still it isn’t showing a pic.

    Maybe did I replace the tag in the wrong place? I replaced it as I said in the “Main Template” of the default theme that is activated. you can find that “Main Template” in the presentation > theme editor function. Did I do right in replacing the tag there??!

    Thread Starter manila

    (@manila)

    Thanks first of all.

    Yes, I put the tag between the loop and I now did exactly what you said – I placed your code right after the <?php the_time('F jS, Y') ?>. But it still doesn’t work: https://fan-sites.org/audrey-tautou

    My “Main Template” (the index file in the Default theme) is this now:
    <?php get_header(); ?>

    <div id="content" class="narrowcolumn">

    <?php if (have_posts()) : ?>

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

    <div class="post" id="post-<?php the_ID(); ?>">
    <h2>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h2>
    <small><?php the_time('F jS, Y') ?> <?php if (function_exists('c2c_the_category_image')) c2c_the_category_image(' ', '', 'gif png'); ?><!-- by <?php the_author() ?> --></small>

    <div class="entry">
    <?php the_content('Read the rest of this entry »'); ?>
    </div>

    <p class="postmetadata">Posted in
    <?php the_category() ?> | <?php edit_post_link('Edit','','|'); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
    </div>

    <?php endwhile; ?>

    <div class="navigation">
    <div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
    <div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
    </div>

    <?php else : ?>

    <h2 class="center">Not Found</h2>
    <p class="center">Sorry, but you are looking for something that isn't here.
    <?php include (TEMPLATEPATH . "/searchform.php"); ?>

    <?php endif; ?>

    </div>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    Where is my fault?

    Thread Starter manila

    (@manila)

    Can no one help me?

Viewing 3 replies - 31 through 33 (of 33 total)