Using Wesite Name and Caption, Website footer, Meta Keywords and Meta description correctly
Hi all Umbraco experts.
I am very new to Umbraco and use it as a CMS for a website and Im desperately trying to SEO optimizing it. But what do I have to write in the sections:
1: Wesite Name?
2: Website Caption?
3: Website footer?
4: Meta Keywords?
5: Meta description?
And do I have to do it for every single page on the website?
I really hope to get some respons from you guys, as it is really needed :o)
1. create a tab for your homepage docType... call it Site Config Data
2. create properties for the elements above using text and multiline text property types where needed.
3. on you homepage master template add the appropriate umbraco getItems where it makes sense...
example:
<!-- google tracking code here --> <umbraco:Item field="gaCode" runat="server"></umbraco:Item> <!-- end google tracking code -->
then for your interiror page master template, add the same items with the recursive property set to true... this will tell the code to bubble up the tree until it finds a value that matches...
example: this code runs in the header of my sites with a <head runat="server"> surrounding the code below...
Using Wesite Name and Caption, Website footer, Meta Keywords and Meta description correctly
Hi all Umbraco experts.
I am very new to Umbraco and use it as a CMS for a website and Im desperately trying to SEO optimizing it. But what do I have to write in the sections:
1: Wesite Name?
2: Website Caption?
3: Website footer?
4: Meta Keywords?
5: Meta description?
And do I have to do it for every single page on the website?
I really hope to get some respons from you guys, as it is really needed :o)
Thanks in advance for your interest.
typically, this is how i approach these items...
1. create a tab for your homepage docType... call it Site Config Data
2. create properties for the elements above using text and multiline text property types where needed.
3. on you homepage master template add the appropriate umbraco getItems where it makes sense...
example:
then for your interiror page master template, add the same items with the recursive property set to true... this will tell the code to bubble up the tree until it finds a value that matches...
example: this code runs in the header of my sites with a <head runat="server"> surrounding the code below...
and the same code chunk from my homepage with the recursive property...
hope you find that helpful.
Hey Bob,
thanks a lot for your reply. I will look into it and hopefully use your codes :o)
is working on a reply...