Hi!
I want to do the same thing, but it’s not working for me. I’m a newbie so the solution is hard to find..
Here’s my code from the index.php
_________________________
<?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 c2c_the_author_image(); ?><br><?php the_time(‘l j. F Y,’) ?> kl <?php the_time(‘H:i’) ?></small>
<div class=”entry”>
<?php the_excerpt_reloaded(70, ‘<img><br>’, ‘content’, TRUE, ‘| Les mer |’, FALSE); ?>
</div>
<p class=”postmetadata”>H??rer til i <?php the_category(‘, ‘) ?> | <?php edit_post_link(‘Rediger’,”,’|‘); ?> <?php comments_popup_link(‘Ingen tilbakemeldinger »’, ‘1 tilbakemelding »’, ‘% tilbakemeldinger »’); ?>
</div>
<?php endwhile; ?>
_________________________
I guess the example in The Loop help is working, but as you can see I have modified my code so I don’t want to just copy and paste the example code (I don’t want to lose what I’ve modified). I tried to implement the example code into the code above, but I got errors and since I’m a newbie I don’t know how to get it to work. Can anyone help please?
Thanks in advance ??