zencoder / html5-boilerplate-for-wordpress

The HTML5 Boilerplate adapted into a WordPress template, including Bruce Lawson's HTML5 blog markup.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Make it child themeable

rickard2 opened this issue · comments

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!

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

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

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