Hi,
Can someone offer some insight as to why the read more isn't showing up here:
http://work.nadinelessio.com/firstsecond/build/
I'm using this method:
function new_excerpt_more($post) {
return '<a href="'. get_permalink($post->ID) . '">' . 'Read the Rest...' . '</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
And this is a static front page. I've tried putting this in front of the call as well:
<?php global $more;$more = 0; ?>
But it also didn't help. Any suggestions?
Thanks
Nadine