Closed (fixed)
Project:
Framework
Version:
6.x-2.2
Component:
Miscellaneous
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
15 Oct 2008 at 11:56 UTC
Updated:
14 Dec 2008 at 13:41 UTC
There is any plan to add SEO optimization in the short/medium term?
Things like:
- better headings management, (Title/H1/H2 see for example Optimized Heading Tag: nathanrice.net/blog/ultimate-guide-to-wordpress-seo-optimized-heading-tags),
- HTML source order having content placed before sidebars or the navbar,
- using the Holy Grail layout technique (see alistapart.com/articles/holygrail)
Thank you for the excellent work
Comments
Comment #1
andregriffin commentedFor heading management, the only change I found necessary was changing block titles to
h3tags. I had intended to do this a long time ago, but it never found it's way onto my task list. If you can make a case for other changes, I'm open to them.The main problem I have with this layout/source ordering technique is the doubled about of px sizing instances that would need to be changed for each column during modification. I fear most users may not easily understand the negative margins and compensation for padding, as well as the arbitrarily large negative margins for equal height columns.
My main goal is for Framework to be universally friendly and useful, hard to break, and with few features/code that would be just thrown away upon modification. I may warm up to the idea after I code up a version, document the code, and extensively test it. The more requests I see for this, the easier my decision will be.
Comment #2
andregriffin commentedAfter some consideration, I feel it would best be left up to the user to implement the holy grail layout and source ordering. The added CSS complexity required by these features may make it hard for some users to properly modify the code to fit their needs. Any user who is advanced enough to care about these features should be able to implement it themselves with relative ease. Sorry if anyone was looking forward to these features. If enough users request, I may make a guide on how one could implement these features themselves.
Comment #3
ajayg commentedI would be interested in this modification (source first). A few notes/hints how to accomplish that are sufficient here. Not looking for an in-depth guide as it may be beyond scope.
Comment #4
rgme commentedAnother vote here for the source-ordering. I took a look at zen theme to implement it, but I was a bit confused about how I would implement it. I've already customized framework, and I like it's straightforwardness. But...I'd love to have the SEO boost with content first. I would definitely be interested in putting it in with framework.
Comment #5
andregriffin commentedOk, I'll start looking into the best/simplest way to achieve this.
Comment #6
andregriffin commentedComment #7
andregriffin commentedHere it is. This took a bit of work, but I hope it serves you well.
I'm not quite convinced to include this in the next release, as it is quite complicated and can break easily (not good for beginning theme developers). I may just keep this issue updated with the code necessary to achieve this.
The updated CSS sections: LC=Left Column, RC=Right Column, CC=Center Column, "Fullwidth" means [width + padding] of a column.
Updated page.tpl.php (only between
<div id="container">and<!-- /#wrapper -->)Comment #8
sam6 commentedThank you!