Advertisement
arie_cristianD

meta_post_just_show_primary_category

Jul 24th, 2023
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.02 KB | None | 0 0
  1. <?php
  2. $single = JNews\Single\SinglePost::getInstance();
  3. ?>
  4. <div class="jeg_post_meta jeg_post_meta_1">
  5.  
  6.     <div class="meta_left">
  7.         <?php if ( $single->show_author_meta() ) : ?>
  8.             <?php if ( jnews_check_coauthor_plus() ) : ?>
  9.                 <div class="jeg_meta_author coauthor">
  10.                     <?php echo jnews_get_author_coauthor( $post->ID, $single->show_author_meta_image(), null, 2 ); ?>
  11.                 </div>
  12.             <?php else : ?>
  13.                 <div class="jeg_meta_author">
  14.                     <?php
  15.                     $author = $post->post_author;
  16.                     if ( $single->show_author_meta_image() ) {
  17.                         echo get_avatar( get_the_author_meta( 'ID', $author ), 80, null, get_the_author_meta( 'display_name', $author ) );
  18.                     }
  19.                     ?>
  20.                     <span class="meta_text"><?php jnews_print_translation( 'by', 'jnews', 'by' ); ?></span>
  21.                     <?php jnews_the_author_link( $author ); ?>
  22.                 </div>
  23.             <?php endif; ?>
  24.         <?php endif; ?>
  25.  
  26.         <?php if ( $single->show_date_meta() ) : ?>
  27.             <div class="jeg_meta_date">
  28.                 <a href="<?php the_permalink(); ?>"><?php echo esc_html( $single->post_date_format( $post ) ); ?></a>
  29.             </div>
  30.         <?php endif; ?>
  31.  
  32.         <?php if ( $single->show_category_meta() ) : ?>
  33.             <div class="jeg_meta_category">>
  34.                 <span><span class="meta_text"><?php jnews_print_translation( 'in', 'jnews', 'in' ); ?></span>
  35.                     <?php
  36.                         $cat = get_category(jnews_get_primary_category($post->ID));
  37.                         echo '<span class="category-separator"><a href="' . esc_url( get_category_link( $cat->term_id ) ) . '">' . $cat->name . '</a></span>' ;
  38.                     ?>
  39.                 </span>
  40.             </div>
  41.         <?php endif; ?>
  42.  
  43.         <?php do_action( 'jnews_render_after_meta_left' ); ?>
  44.     </div>
  45.  
  46.     <div class="meta_right">
  47.         <?php do_action( 'jnews_render_before_meta_right', get_the_ID() ); ?>
  48.         <?php if ( $single->show_comment_meta() ) : ?>
  49.             <div class="jeg_meta_comment"><a href="<?php echo jnews_get_respond_link(); ?>"><i
  50.                         class="fa fa-comment-o"></i> <?php echo esc_html( jnews_get_comments_number() ); ?></a></div>
  51.         <?php endif; ?>
  52.     </div>
  53. </div>
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement