The “More” Tag on a WordPress Page
-
hello ,
i have to add The “More” Tag on a WordPress Page. The solution i got is as follows through forums :-
The technique is rather simple. Simply declare a variable named $more as a global and set it to false right before showing your content. If you wish to resume normal behavior after the content is shown, simply set the variable back to true.
<?php global $more; $more = false; ?>
<?php the_content(‘Continue Reading’); ?>
<?php $more = true; ?>Can anyone explain me the above solution , like where we have to add this code . please step be step how to add the tag on the wordpress pages . I am trying to make a website which is not yet published and i need this tag on a page named “news”.
any help will be appreciated .
Thanks
- The topic ‘The “More” Tag on a WordPress Page’ is closed to new replies.