Yes, i have already read it, but i don’t understand ??
this is my loop:
<?php $my_query = new WP_Query('cat=6&showposts=8'); ?>
<ul class="friendgallerieslist">
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li>
<img src="/wp-content/themes/tb/images/img.gif"> <a href="<?php the_permalink() ?>" rel="bookmark" target="_blank"><?php the_title(); ?></a>
</li>
<?php endwhile; ?>
i would call the custom link near the title of my post…what i do now ?