Hi,
I'm new to wordpress. I want to be able to add the insert more tag into my pages.
I've read the forums and found out that i need to add the following to the code. But the problem i'm facing is that I don't know which file should I add this code in. I got the code from the link below.
http://codex.wordpress.org/Customizing_the_Read_More#How_to_use_Read_More_in_Pages
<?php
global $more;
$more = 0;
?>
//The code must be inserted ahead of the call the_content, but AFTER the_post()
<?php the_content('Continue Reading'); ?>