HEX
Server: Apache
System: Linux d8507.use1.stableserver.net 5.14.0-570.30.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 30 05:12:29 EDT 2025 x86_64
User: dacusvillerec (1045)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /home/dacusvillerec/public_html/wp-content/themes/exponent/author.php
<?php
/**
 * Author Template.
 */

    $sidebar = be_themes_get_option( 'blog_loop_sidebar' );
    $sidebar_position = be_themes_get_option( 'blog_loop_sidebar_position' );
    $author_custom_header = be_themes_get_option( 'author_custom_header' );
    $blog_style = be_themes_get_option( 'blog_archive_style' );
    $list_styles = array( 'style1', 'style4' );
    $full_width = !in_array( $blog_style, $list_styles ) && be_themes_get_option( 'blog_grid_full_width' );

    get_header();
    do_action( 'be_themes_before_post_archive' );
    if( !empty( $author_custom_header ) ) {
        get_template_part( 'template-parts/posts/author', 'title' ); 
    }
?>
    <div class="be-blog-archive">
<?php
	get_template_part( 'template-parts/partials/content-pad', 'start' );
    get_template_part( 'template-parts/partials/wrap', 'start' );
    if( !empty( $sidebar ) ) {
        set_query_var( 'be_sidebar_position', $sidebar_position );
        if( !empty( $full_width ) ) {
            set_query_var( 'be_sidebar_with_margin', true ); 
        }
        get_template_part( 'template-parts/posts/sidebar', 'start' );
    }
    get_template_part( 'template-parts/posts/archive' );
    if( !empty( $sidebar ) ) {
        get_template_part( 'template-parts/posts/sidebar', 'end' );
    }
    get_template_part( 'template-parts/partials/wrap', 'end' );
    get_template_part( 'template-parts/partials/content-pad', 'end' );
?>
    </div>
<?php
    do_action( 'be_themes_after_post_archive' );
    get_footer();