zencoder / html5-boilerplate-for-wordpress

The HTML5 Boilerplate adapted into a WordPress template, including Bruce Lawson's HTML5 blog markup.
633 stars 130 forks source link

Make it child themeable #3

Open rickard2 opened 13 years ago

rickard2 commented 13 years ago

This boilerplate would be great to use for child themes, although it doesn't seem like this theme is prepared for it. The first issue i found is that it doesn't include the child themes stylesheet, although this is fixed easy with adding the line:

<link rel="stylesheet" href="<?php bloginfo("stylesheet_directory") ?>/style.css" />

I'd like for this theme to be evolving towards being usable for child themeing, to me it seems like the point of a boilerplate :-)

Thank you for your good work!

walker commented 13 years ago

Heya, won't this work and be what WP seems to want as the standard?:

<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" />

rickard2 commented 13 years ago

Yeah, I think that's what you'd want to use..