Where and how to include META Tags
Where and how to include META Tags
I want to include META tags for Searh engines inside my webpage. Please let me know where abd how to put it.
-
- Forum Members
- Posts: 30
- Joined: Tue Feb 21, 2006 9:36 am
Re: Where and how to include META Tags
I solved it by adding some user-defined tags. In my case: meta_description and meta_keywords
In meta_description I wrote:
echo "SoccerHeaven - Everything about soccer"; ' just making up here
In meta_keywords I wrote:
echo "soccer, football, aso"; 'just add the words u want
Then in the template I added
'shows the page title as well
Which would give you something like this:
Maybe there's a better way, but this gives my editor an easy way to edit description and keywords without my interferance
Note: This gives you the same description and keywords on ALL pages. The page title in brackets will however be different for each page.
In meta_description I wrote:
echo "SoccerHeaven - Everything about soccer"; ' just making up here
In meta_keywords I wrote:
echo "soccer, football, aso"; 'just add the words u want
Then in the template I added
'shows the page title as well
Which would give you something like this:
Maybe there's a better way, but this gives my editor an easy way to edit description and keywords without my interferance

Note: This gives you the same description and keywords on ALL pages. The page title in brackets will however be different for each page.
Last edited by baconburgare on Thu Feb 23, 2006 9:31 am, edited 1 time in total.
Re: Where and how to include META Tags
thanks for the tip Baconburgare. Works well for my needs.