html5-boilerplate-for-wordpress icon indicating copy to clipboard operation
html5-boilerplate-for-wordpress copied to clipboard

Make it child themeable

Open rickard2 opened this issue 14 years ago • 2 comments
trafficstars

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!

rickard2 avatar Dec 20 '10 17:12 rickard2

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

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

walker avatar May 07 '11 14:05 walker

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

rickard2 avatar May 15 '11 20:05 rickard2