Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $single = JNews\Single\SinglePost::getInstance();
- ?>
- <div class="jeg_post_meta jeg_post_meta_1">
- <div class="meta_left">
- <?php if ( $single->show_author_meta() ) : ?>
- <?php if ( jnews_check_coauthor_plus() ) : ?>
- <div class="jeg_meta_author coauthor">
- <?php echo jnews_get_author_coauthor( $post->ID, $single->show_author_meta_image(), null, 2 ); ?>
- </div>
- <?php else : ?>
- <div class="jeg_meta_author">
- <?php
- $author = $post->post_author;
- if ( $single->show_author_meta_image() ) {
- echo get_avatar( get_the_author_meta( 'ID', $author ), 80, null, get_the_author_meta( 'display_name', $author ) );
- }
- ?>
- <span class="meta_text"><?php jnews_print_translation( 'by', 'jnews', 'by' ); ?></span>
- <?php jnews_the_author_link( $author ); ?>
- </div>
- <?php endif; ?>
- <?php endif; ?>
- <?php if ( $single->show_date_meta() ) : ?>
- <div class="jeg_meta_date">
- <a href="<?php the_permalink(); ?>"><?php echo esc_html( $single->post_date_format( $post ) ); ?></a>
- </div>
- <?php endif; ?>
- <?php if ( $single->show_category_meta() ) : ?>
- <div class="jeg_meta_category">>
- <span><span class="meta_text"><?php jnews_print_translation( 'in', 'jnews', 'in' ); ?></span>
- <?php
- $cat = get_category(jnews_get_primary_category($post->ID));
- echo '<span class="category-separator"><a href="' . esc_url( get_category_link( $cat->term_id ) ) . '">' . $cat->name . '</a></span>' ;
- ?>
- </span>
- </div>
- <?php endif; ?>
- <?php do_action( 'jnews_render_after_meta_left' ); ?>
- </div>
- <div class="meta_right">
- <?php do_action( 'jnews_render_before_meta_right', get_the_ID() ); ?>
- <?php if ( $single->show_comment_meta() ) : ?>
- <div class="jeg_meta_comment"><a href="<?php echo jnews_get_respond_link(); ?>"><i
- class="fa fa-comment-o"></i> <?php echo esc_html( jnews_get_comments_number() ); ?></a></div>
- <?php endif; ?>
- </div>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement