Title: Breadcrumb
Last modified: December 2, 2019

---

# Breadcrumb

 *  Resolved [Michael](https://wordpress.org/support/users/mkalina/)
 * (@mkalina)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/breadcrumb-32/)
 * Hi, I would like to use a breadcrumb (the one Yoast or RankMath offer) on my 
   site. How would I do that with GutenBooster _without_ having to insert a shortcode
   or something on every single page?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Theme Author [Scott Jr](https://wordpress.org/support/users/sj_o/)
 * (@sj_o)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/breadcrumb-32/#post-12200692)
 * Hi [@mkalina](https://wordpress.org/support/users/mkalina/)
 * Right now GutenBooster has no native breadcrumbs but you’d need to add that in
   your theme using shortcodes.
 * I would suggest creating a child theme for that.
 * And please let me know if you need a guideline for properly creating GutenBooster
   child theme and I’ll provide the steps.
 * Thanks!
    Onur
 *  Thread Starter [Michael](https://wordpress.org/support/users/mkalina/)
 * (@mkalina)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/breadcrumb-32/#post-12200865)
 * Yes, please (child theme)! Bc I ran into some rather unpleasant issues when simply
   working with functions.php and style.css. (And thanks for the quick reply.)
 *  Theme Author [Scott Jr](https://wordpress.org/support/users/sj_o/)
 * (@sj_o)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/breadcrumb-32/#post-12200877)
 * No problem 🙂
 * Ok here’s how to create a child theme:
 * – Create a functions.php file and enqueue styles like as follows:
 *     ```
       /**
        * Define Constants
        */
       define( 'CHILD_THEME_GBCHILD_VERSION', '1.0.0' );
   
       add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles', 1 );
   
       function enqueue_parent_styles() {
          wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css', array('bootstrap'), CHILD_THEME_GBCHILD_VERSION, 'all' );
       }
       ```
   
 * Also remember creating a style.css file for your child theme: [https://a.cl.ly/04ug994p](https://a.cl.ly/04ug994p)
 * I hope this helps.
 * Thanks!
    Onur

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Breadcrumb’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/gutenbooster/1.1.3/screenshot.
   png)
 * GutenBooster
 * [Support Threads](https://wordpress.org/support/theme/gutenbooster/)
 * [Active Topics](https://wordpress.org/support/theme/gutenbooster/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/gutenbooster/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/gutenbooster/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Scott Jr](https://wordpress.org/support/users/sj_o/)
 * Last activity: [6 years, 4 months ago](https://wordpress.org/support/topic/breadcrumb-32/#post-12200877)
 * Status: resolved