Advertisement
arie_cristianD

add breadcrumbs on template 10

Jan 7th, 2025
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. add_action( 'jnews_single_post_before_title', 'add_breadcrumbs_on_template_10' );
  2.  
  3. function add_breadcrumbs_on_template_10( $post_id ) {
  4.     $single = JNews\Single\SinglePost::getInstance();
  5.     if ( jnews_can_render_breadcrumb() && jnews_show_breadcrumb() && '10' === $single->get_template() ) {
  6.         ?>
  7.     <div class="jeg_breadcrumbs jeg_breadcrumb_container">
  8.         <?php $single->render_breadcrumb(); ?>
  9.     </div>
  10.         <?php
  11.     }
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement