updated   : April 22, 2013
we now have 608 snippets

Fix the read more link when using query_posts

wordpress snippet

When using query_posts to customize the query you may find that the “read more…” link no longer functions. Fixing this issue will require you to reset the $more variable. Add the following snippet just before the loop and things will start functioning properly again.

snippet :  PHPcopy
global $more;
$more = 0;