Advertisement
arie_cristianD

render post meta on bottom

May 27th, 2025
409
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. add_action( 'jnews_share_bottom_bar', 'print_post_meta', 9 );
  2.  
  3. function print_post_meta() {
  4.     $single_post = JNews\Single\SinglePost::getInstance();
  5.     ?>
  6.         <div class="entry-header">
  7.             <div class="jeg_meta_container"><?php $single_post->render_post_meta(); ?></div>
  8.         </div>
  9.     <?php
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement