New Topic

Reply To: Make the_excerpt() clickable

Home › Forum › Customization › Make the_excerpt() clickable › Reply To: Make the_excerpt() clickable

#360

StartupWP
Keymaster

Try simply wrapping it with a link like so:

<a href="<?php the_permalink(); ?>">
<?php
if(is_archive() || is_search() || is_home()){
get_template_part('entry','summary');
} else {
get_template_part('entry','content');
}
?>
</a>