Title: nerdao's Replies | WordPress.org

---

# nerdao

  [  ](https://wordpress.org/support/users/nerdao/)

 *   [Profile](https://wordpress.org/support/users/nerdao/)
 *   [Topics Started](https://wordpress.org/support/users/nerdao/topics/)
 *   [Replies Created](https://wordpress.org/support/users/nerdao/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/nerdao/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/nerdao/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/nerdao/engagements/)
 *   [Favorites](https://wordpress.org/support/users/nerdao/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to add breadcrumb plugin in my mystique theme?](https://wordpress.org/support/topic/how-to-add-breadcrumb-plugin-in-my-mystique-theme/)
 *  [nerdao](https://wordpress.org/support/users/nerdao/)
 * (@nerdao)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/how-to-add-breadcrumb-plugin-in-my-mystique-theme/#post-1350247)
 * Install the breadcrumb plugin and activate it.
    Go to Appearence –> Mystique 
   Configurations –> Advanced. Put the code below in the User Functions box:
 *     ```
       function show_breadcrumb_header() {
           if(function_exists('bcn_display'))
           {
             echo '<div class="breadcrumb"><b>You are here: </b>';
             bcn_display();
             echo '</div>';
           }
         }
       add_action('mystique_before_primary', 'show_breadcrumb_header');
       ```
   
 * If you want to put the breadcrumb in the footer, use this code:
 *     ```
       function show_breadcrumb_footer() {
           if(function_exists('bcn_display'))
           {
             echo '<div class="breadcrumb"><b>You are here: </b>';
             bcn_display();
             echo '</div>';
           }
         }
       add_action('mystique_after_primary', 'show_breadcrumb_footer');
       ```
   
 * You can see this working in [Blog do Nerd](http://blogdonerd.com.br).

Viewing 1 replies (of 1 total)