Reply To: Portfolio page

Homepage Community Forums Legacy Theme Support Portfolio page Reply To: Portfolio page

#3825
intosuwo
Customer

    /** 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>’;

    }