/** Add Widget Area */
add_action( ‘genesis_before_content_sidebar_wrap’, ‘child_before_content_ad_sidebar’ );
/** Loads a new sidebar before the content */
function child_before_content_ad_sidebar() {
echo ‘<div class=”before-content-ad”>’;
dynamic_sidebar( ‘before-content-ad’ );
echo ‘</div>’;
}