Links in excerpts. Not working..
-
I’m using this code on my WP site:
<?php query_posts('showposts=3'); while(have_posts()) : the_post(); ?> <ul> <li><h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?> »</a></h3></li> <li class="home_date"><abbr class="published" title="<?php the_time(__('j.n.Y', 'example')); ?>"><?php the_time(__('j.n.Y', 'example')); ?></abbr></li> <li><?php the_excerpt(); ?></li> </ul> <hr /> <?php endwhile; ?>
It shows latest post from the blog with excerpt. It works fine, but links doesn’t work in excerpts. They are like normal text..
Links work fine on posts and blog..
How do I fix that?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Links in excerpts. Not working..’ is closed to new replies.