Hi X,
Thanks for this great theme! I would like to add a widget area before the post author box, it needs to be something like this in my functions.php:
//* Hooks after-entry widget area to single posts
add_action( ‘x_entry_footer’, ‘my_after_entry_widget’ );
function my_after_entry_widget() {
if ( ! is_singular( ‘post’ ) )
return;
genesis_widget_area( ‘after-entry’, array(
‘before’ => ‘<div class=”after-entry widget-area”><div class=”wrap”>’,
‘after’ => ‘</div></div>’,
) );
}
Any idea how to get this working with X?
Thanks!
– Menno