Hi everyone
I want to use wordpress to display our products and I need to optimize our title so it includes the previous page title aswell. The previous page in my case has the "product group name" and this is a great deal regarding SEO.
My site has the following structure:
- mainpage
- mainpage, products
- mainpage, products, product group name
- mainpage, products, product group name, product name
Today my title on a product is like the following:
product name - wp_title
I need it to display the following:
product group name - product name - wp_title
The source i use today is the following:
<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Arkiv <?php } ?> <?php wp_title(); ?></title>
How will i go about optimizing my title?
Looking forward to read your replys!