Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- get_header();
- $author = new \JNews\Archive\AuthorArchive();
- $author_data = get_queried_object();
- $url = get_author_posts_url( $author_data->ID );
- $section = isset( $_REQUEST['section'] ) ? esc_html( $_REQUEST['section'] ) : '';
- ?>
- <div class="jeg_main <?php $author->main_class(); ?>">
- <div class="jeg_container">
- <div class="jeg_content">
- <div class="jeg_section">
- <div class="container">
- <?php do_action( 'jnews_archive_above_content' ); ?>
- <div class="jeg_archive_header jeg_authorpage clearfix">
- <?php if ( jnews_can_render_breadcrumb() && jnews_show_breadcrumb() ) : ?>
- <div class="jeg_breadcrumbs jeg_breadcrumb_container">
- <?php echo jnews_sanitize_output( $author->render_breadcrumb() ); ?>
- </div>
- <?php endif; ?>
- <div class="jeg_author_wrap vcard">
- <div class="jeg_author_image">
- <?php echo get_avatar( $author_data->ID, 110, null, $author_data->display_name ); ?>
- </div>
- <div class="jeg_author_content">
- <h3 class="jeg_author_name fn">
- <?php echo get_the_author_meta( 'display_name', $author_data->ID ); ?>
- </h3>
- <div class="jeg_author_desc">
- <?php echo wpautop( get_the_author_meta( 'description', $author_data->ID ) ); ?>
- </div>
- <?php if ( defined( 'JNEWS_ESSENTIAL' ) ) : ?>
- <div class="jeg_author_socials">
- <?php get_template_part( 'fragment/post/author-social' ); ?>
- </div>
- <?php endif; ?>
- </div>
- </div>
- </div>
- <div class="jeg_cat_content row">
- <div class="jeg_main_content col-sm-<?php echo esc_attr( $author->get_content_width() ); ?>">
- <div class="jeg_inner_content">
- <?php if ( defined( 'JNEWS_REVIEW' ) ) : ?>
- <ul class="authorlink">
- <li class="<?php echo esc_attr( $section === '' ? 'active' : '' ); ?>">
- <a href="<?php echo esc_url( $url ); ?>"><?php jnews_print_translation( 'All', 'jnews', 'all' ); ?></a>
- </li>
- </ul>
- <?php endif ?>
- <div class="jnews_author_content_wrapper">
- <?php echo jnews_sanitize_output( $author->render_content() ); ?>
- </div>
- </div>
- </div>
- <?php $author->render_sidebar(); ?>
- </div>
- </div>
- </div>
- </div>
- <?php do_action( 'jnews_after_main' ); ?>
- </div>
- </div>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement