Forum Replies Created
-
AuthorPosts
-
December 12, 2013 at 4:21 am in reply to: Sass / Scss Version of the Genesis Sample starter child theme #78526
blustemy
MemberHi,
I must add Sass has been officially chosen for the WordPress Core:
http://www.wptavern.com/wordpress-core-adopts-sass-css-preprocessorAt least it’s for now on the new admin interface (MP6):
http://core.trac.wordpress.org/changeset/26137Have a nice day,
Fred
October 24, 2013 at 9:08 am in reply to: Sass / Scss Version of the Genesis Sample starter child theme #68629blustemy
MemberThanks for your thorough answer David!
In fact I think it would be great if the Genesis Child theme sample would be on GitHub 😉
It wouldn’t disclose too much the internals of the Genesis Framework.Anyway a
scss
folder could be distributed in parallel of the standalonestyle.css
CSS file to have the choice to work either on the Scss files, or the CSS file.These last weeks I’ve read a lot of articles about modular design patterns (http://bradfrostweb.com/blog/post/atomic-web-design/), perhaps that’s what influences my choices!
Fred
blustemy
MemberThanks a lot, this visual hook guide is awesome. It really helped me understand all the available hooks!
It resolved my initial issue 🙂
blustemy
MemberIn fact it seems the hook
add_action( 'genesis_before_post_title', 'insert_test' );
works only when I remove HTML5 support.So, I’ve found a fix:
add_action( 'genesis_entry_header', 'insert_test', 1 ); function insert_test() { ?> <!-- I’ll put the code to display the featured image here --> <?php }
I haven’t found any official documentation on this. Only Googling…
Anyway, thanks a lot for your help.
-
AuthorPosts