Using HTML5 To Transform WordPress’ TwentyTen Theme
|
Last year, WordPress launched arguably its biggest update ever: WordPress 3.0. Accompanying this release was the brand new default theme, TwentyTen, and the promise of a new default theme every year. Somewhat surprisingly, TwentyTen declares the HTML5 doctype but doesn’t take advantage of many of the new elements and attributes that HTML5 brings.
Now, HTML5 does many things, but you can’t just add to the top of a document and get excited that you’re so 2011. Mark-up, as they say, is meaning, and HTML5 brings a whole bunch of meaning to our documents.
In a recent survey by Chris Coyier over at CSS-Tricks, almost two thirds of respondents said they would not use HTML5 in new projects. In a similar survey by Smashing Magazine the results were almost identical: only 37% of voters said they use HTML5. This is depressing reading. Perhaps developers and designers are scared off by cross-browser incompatibility and the chore of learning new mark-up. The truth is that with a pinch of JavaScript, HTML5 can be used safely today across all browsers, back to IE6.
WordPress seems to sympathize with the majority of CSS-Tricks’ readers. TwentyTen is a fine theme that already validates as HTML5; but in order to cater to users without JavaScript, it has to forgo a large chunk of HTML5 elements. The reason? Our old friend Internet Explorer doesn’t support most of them prior to version 9.
The default TwentyTen WordPress Theme.
For example, you’ve probably already heard of the and
tags, both of which are champing at the bit to be embedded in a WordPress template. But to use these HTML5 elements in IE8 (and its predecessors), you need JavaScript in order to create them in the DOM. If you don’t have JavaScript, then the elements can’t be styled with CSS. Turn off JavaScript and you turn off the styling for these elements; invariably, this will break the formatting of your page.
I assume that WordPress decided to exclude these problematic tags so that its default theme would be supported by all browsers — not just those with JavaScript turned on.
While I understand this decision, I also think it’s a mistake. Three core technologies make the Web work: HTML, CSS and JavaScript. All desktop browsers support them (to some degree), so if any one of them off is disabled the user will have to expect a degraded experience. JavaScript is now fundamental to the user experience and while we should support users who turn off JavaScript, or have it turned off for them and have no chance to turn it on again as they don’t have the right to do so, I question just how far we should support them.
Why Using JavaScript Makes Sense
Yahoo gives compelling evidence that less than 1.5% of its users turn off JavaScript. My own research into this, ably assisted by Greig Daines at eConversions, puts the figure below 0.5% (based on millions of visitors to a UK retail website).
Whilst it’s true that JavaScript should be separated from a site’s content, design and structure the reality is no longer black and white. I strongly believe that the benefits and opportunities HTML5 brings, together with related technologies such as CSS3 and media queries (both of which sometimes rely on JavaScript for cross-browser compatibility), is more than enough reason to use JavaScript to ‘force’ new elements to work in Internet Explorer. I am a passionate advocate for standards-based design that doesn’t rely on JavaScript; HTML5 is the one structural exception.
Yes, we should respect a user’s decision to deactivate JavaScript in their browser. However, I don’t believe that this is a good enough reason for not using modern technologies, which would provide the vast majority of users with a richer user experience. After all, in the TwentyTen example, if the theme had HTML5 tags in it, everything would look fine in modern browsers (latest versions of Safari, Firefox, Opera, Chrome and IE9), with or without JavaScript.
If the browser is IE6 – IE8, and JavaScript is turned off, then users would see the content but it will not be styled correctly. If the content would not be displayed at all, we’d have a completely different discussion. If you are still not convinced, I will briefly discuss another option for those who absolutely must support users with JavaScript turned off.
To make TwentyTen play fair with IE, I suggest Remy Sharp’s HTML5 shim or, if you want to sink your teeth into CSS3, Modernizr. Modernizr not only adds support for HTML5 elements in IE but also tells you which CSS3 properties are supported by the user’s browser by adding special classes to the element.
Mordernizr.js
So, let’s assume you’ve rightly banished non-JavaScript users with a polite message in a tag. We can now start tinkering under the hood of TwentyTen to bring some more HTML5 to WordPress.
Upgrading To HTML5
TwentyTen gets a number of things spot on. First of all, it declares the right doctype and includes the abbreviated meta charset
tag. It also uses other semantic goodness like Microformats and great accessibility features like WAI-ARIA. But we can go further.
Important notes:
- I am referencing the HTML generated at http://wp-themes.com/twentyten/, rather than the simple “Hello World†clean installation of WordPress 3.
- For this article, I’ll be editing the files directly in the
/wp-content/themes/twentyten/
directory. I’ve provided all the updated HTML5 theme source files for you to download from TwentyTen Five. - Line numbers may change over time, so when I reference one, I’ll usually say “on or around line…†The version of WordPress at the time of writing is 3.0.4.
Articles
One of the more confusing parts of the HTML5 spec is the and
tags. Which came first, the chicken or the egg? The easiest way to remember is to refer to the specification. The HTML5 spec may be dry at the best of times, but its explanation of articles will always point you in the right direction:
The article
element represents a self-contained composition in a document, page, application, or site and that is, in principle, independently distributable or reusable, e.g. in syndication.
If the piece of content in question can be, and most likely will be, syndicated by RSS, then there’s a good chance it’s an . A blog post in WordPress fits the bill perfectly.
On the TwentyTen home page, we get the following HTML:
Semantically this means very little. But with the simple addition of an article
tag, we’re able to transform it into mark-up with meaning.
…
Note that we retain the id
to ensure that this remains unique.
To make this change in the TwentyTen theme, open loop.php, which is in /wp-content/themes/twentyten/
. On or around line 61, you should find the following code:
We’ll need to change that And then we close it again on or around line 97, so that… … becomes: There are also instances on lines 32, 101 and 124. Opening some of the other pages in the theme, for example single.php, and making the same change is worthwhile. Thus, line 22 in single.php would change from… … to: And line 55 would change from… … to: So far, so good. These are simple changes, but they already serve to overhaul the semantics of the website. According to the HTML5 spec: The This means we can give the date and time of an article’s publication more context with HTML5’s
rel="bookmark">October 17, 2008 We can add meaning to our mark-up by transposing this to:
rel="bookmark">
pubdate>October 17, 2008 This time is now machine-readable, and the browser can now interact with the date in many ways should we so wish. I’ve also added the boolean attribute Time in the To make our HTML5 changes, let’s head over to function twentyten_posted_on() { If you don’t know what that means, don’t worry. We’re focusing on the sprintf function, which basically takes a string and inserts the variables that are returned by the three functions listed: that is, We need to change how the date is formatted, so we’ll have to add a fourth function: printf( __( 'Posted on %2$s by %3$s', 'twentyten' ), I’ve included For more details on WordPress’ date and time functions, check out: A figure—for our purposes at least—is a piece of media that you upload in WordPress to embed in a post. The most obvious example would be an image, but it could be a video, too, of course. WordPress 3 is helpful enough to add captions to images when you first import the images, but it doesn’t display those captions using the new HTML5 The spec defines The And it defines The Currently an image with a caption is rendered like this: Changing this HTML to include HTML5 elements requires us to first look at media.php in the return ' ' . $caption . ' '; To upgrade this to HTML5, we need to define a new function that outputs our add_shortcode('wp_caption', 'twentyten_img_caption_shortcode'); function twentyten_img_caption_shortcode($attr, $content = null) { extract(shortcode_atts(array( if ( 1 > (int) $width || empty($caption) ) if ( $id ) $idtag = 'id="' . esc_attr($id) . '" '; return ''; First, we point the shortcodes for One of the biggest improvements introduced in HTML5 is how form fields work and respond to user input. We can take advantage of these changes by using HTML5 form elements in the default WordPress comments form in three ways: Before adding HTML, a typical comment input field might look like this: * After our HTML5 changes, it would look like this: * To make these improvements in the code, we need to do two things. First, we need to change the HTML for the default fields (name, email address and website URL), and then we need to change it for the comment’s To change the HTML for the default form fields, we need to add the following filter to the bottom of functions.php: add_filter('comment_form_default_fields', 'twentytenfive_comments'); And then we have to create our custom function function twentytenfive_comments() { $req = get_option('require_name_email'); $fields = array( ' . ' ' . ( $req ? '*' : '' ) . 'email' => '
' . ( $req ? '*' : '' ) . 'url' => '
' . ' ); You can see here that each element in the form has a name in the Finally, we need to add some HTML5 to the add_filter('comment_form_field_comment', 'twentytenfive_commentfield'); We follow this with another custom function: function twentytenfive_commentfield() { $commentArea = '
'; return $commentArea; } This is more or less the same as the default You can control exactly which fields appear in your form with these two filters, so feel free to add more if you want to collect more information. Although relatively simple, these changes to the comment form provide additional (and useful!) features to users with latest-generation browsers. Look in Opera, Chrome (which doesn’t yet support We finally get around to inserting the new It doesn’t take a genius to see that we can easily make this HTML5-ready by changing some of those divs to include
You can see that we’ve left the WAI-ARIA role of I have replaced the While we’re editing the header, we can introduce the new element. This element enables us to include multiple headings in a section of our document, while they would be treated as just one heading in the document outline. Currently, the code on or around line 65 in header.php looks like this: We can edit this to include the In We can easily edit this to include a
As mentioned, we should include an HTML5 shim or Modernizr.js to make sure that all of our new elements render correctly in Internet Explorer prior to version 9. I added the following line to header.php: A couple of things to note here. First, we no longer need Although we are including Modernizr partly to make sure that IE can deal with the new HTML5 elements, I am serving it to all browsers because of the CSS3-checking functionality it provides. In style.css, we need to make sure that our HTML5 elements have a header, nav, section, article, aside, figure, footer { display: block; } While we’re talking about CSS, remember that we can now remove That should be enough for now. Remember, though, that changing the structure of the page by replacing older HTML elements with new ones might require some additional CSS. We should let the small minority of users know that we’ve stopped supporting browsers that have JavaScript turned off. A polite message just below the opening Add some very basic styling in style.css to make this message unmissable. /* A message for users with JavaScript turned off */ There is another option for those of you who absolutely must support users with JavaScript turned off, as suggested by Christian Heilmann. Simply wrap your HTML5 elements with divs which share the same ID name. For example: becomes Then it’s just a case of adding .article, It’s worth noting that this adds another layer of markup to your code which isn’t needed for most users. I’d only recommend it if non-JavaScript users are a significant proportion of your users and/or sales. TwentyTen was a huge step forward for WordPress; and as a piece of HTML, it is a beacon of best practice. By including some simple JavaScript, we can now open up the theme to the world of HTML5—and the additional meaning and simpler semantic code that it offers. While we’ve addressed a good number of new HTML5 elements in this article, it really is just a starting point and you can add many more yourself. For example, you could add headers and footers to individual posts, or you might like to add the new To complement this article, I have created a new version of TwentyTen, with the HTML5 elements we have discussed. Download this theme from TwentyTen Five. You may be interested in the following articles and related resources: (al) (vf) (ik) © Richard Shepherd for Smashing Magazine, 2011. | Permalink | Post a comment | Smashing Shop | Smashing Network | About Us
, so that it reads:
Time and Date
element either represents a time on a 24-hour clock, or a precise date on the proleptic Gregorian calendar, optionally with a time and a time-zone offset.
tag. Look at the code that WordPress generates:
pubdate
, which designates this as the date on which the article or content was published.datetime
attribute is optional, but because WordPress includes it when you post an article, we can too. Implementing this in TwentyTen requires us to dig a little deeper. In loop.php, the following function on or around line 65 calls for the date to be included:/wp-content/themes/twentyten/
and open functions.php. On or around line 441, you’ll see this:
printf( __( 'Posted on %2$s by %3$s', 'twentyten' ),
'meta-prep meta-prep-author',
sprintf( '%3$s',
get_permalink(),
esc_attr( get_the_time() ),
get_the_date()
),get_permanlink()
, get_the_time()
and get_the_date()
are inserted into %1$s
, %2$s
and %3$s
, respectively.get_the_date('c')
. WordPress will then return the date in Coordinated Universal Time (UTC) format, which is exactly what the element requires. Our finished code looks like this:
'meta-prep meta-prep-author',
sprintf( '
pubdate>%3$s',
get_permalink(),
get_the_date('c'),
get_the_date()
),get_the_date()
twice because we need two different formats: one for the element and one that’s displayed to the user. I’ve also removed
title="[time published]"
because that information is already included in the element.
Figures
and
tags. as follows:
figure
element represents a unit of content, optionally with a caption, that is self-contained, that is typically referenced as a single unit from the main flow of the document, and that can be moved away from the main flow of the document without affecting the document’s meaning.
like so:figcaption
element represents a caption or legend for the rest of the contents of the figcaption
element’s parent figure
element, if any.
A WordPress image with a caption./wp-includes/
directory, where this code is generated. On or around line 739, you’ll find:
. do_shortcode( $content ) . '
-based HTML and assign this function to the same shortcode that calls
img_caption_shortcode()
. I’ve done this in /wp-content/themes/twentyten/functions.php
by adding the following to the bottom of the file:
add_shortcode('caption', 'twentyten_img_caption_shortcode');
'id' => '',
'align' => 'alignnone',
'width' => '',
'caption' => ''
), $attr));
return $content;
}wp-caption
and caption
to our new function twentyten_img_caption_shortcode()
. Then, we simply copy the original function from media.php, and change the last few lines to include our element. This now renders our boat.jpg example from above like so:
The Comments Form
email
and url
for the relevant fields. This not only more accurately describes the input field, but also adds better keyboard functionality for the iPhone, for example.required
to our required form fields. This goes beyond WAI-ARIA’s aria-required='true'
because it invokes the browser’s own required
behavior.
size="30" aria-required='true' />
size="30" aria-required='true'
placeholder="How can we reach you?" required />. We can achieve both of these changes with additional filters and custom functions.
twentytenfive_comments()
to change how these fields are displayed. We can do so by creating an array containing our new form fields and then returning it to this filter. Here’s the function:
'author' => '
'',
'',
'
return $fields;
}array()
: author, email and url. We then type in our custom code, which contains the new HTML5 form attributes. We have added placeholder text to each of the elements and, where required, added the boolean required
attribute (and we need to check if the admin has made these fields required using the get_option()
function). We’ve also added the correct input type to the inputs for author, email address and website URL., which is home to the user’s comments. We have to use another filter here, also in functions.php:
, except with
placeholder
and required
attributes.required
) or Firefox 4 to see the results.Header, Navigation and Footer
, and
elements. Currently, the code in
/wp-content/themes/twentyten/header.php
looks more or less like this:
and .
navigation
assigned to the nav
element—simply to offer the broadest possible support to all browsers and screen readers.#masthead
div with a because all of the elements in this area relate to one another and are likely to appear in a document outline. It seems you could delete this section altogether and just apply 30 pixels of
padding-top
to the header to maintain the layout. I’ve maintained the elements’ id
s in case more than one of each are on the page—multiple headers, footers and navs (and more) are all welcome in HTML5. tag, and also change
element:
/wp-content/themes/twentyten/footer.php
, we have: and another
element:
JavaScript and CSS
type="text/javascript"
because the browser will assume that a script is JavaScript unless it’s told different. Secondly, we have to use the WordPress bloginfo()
function to point the source URL to our theme directory.display: block
attribute, because some older browsers will treat them as inline elements. For our purposes, the following line at the top of the CSS file will do:type="text/css"
from our
tags. The simplified code looks like this:
tag in header.php should suffice:
noscript strong {
display: block;
font-size: 18px;
line-height:1.5em;
padding: 5px 0;
background-color: #ccc;
color: #a00;
text-align: center; }Still Not Convinced? A Cross-Browser Alternative
...
...
.article
to your article CSS definition. It might look like this:
article { display: block; background-color: #f7f7f7; }Final Thoughts
element. Let us know your ideas and how you get on with implementing them in the comments below!
Download TwentyTen With HTML5
Other Resources
The HTML5 spec. An essential reference to bookmark.
WordPress announces the sandbox theme called Toolbox, built entirely in HTML5.
Download the WordPress HTML5 theme Toolbox.
Bruce Lawson takes an early crack at introducing some HTML5 into WordPress.
New to HTML5? This is a great place to start.
Post tags: html5, wordpress
- Login om te reageren