Advertisement
raselahmed7

How to Use better breadcrumbs in wordpress

May 12th, 2013
735
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Step One
  2. ================
  3.  
  4. Download/copy breadcrumbs.php data from here: http://pastebin.com/V86kd1zX
  5.  
  6. Step Two
  7. ================
  8.  
  9. Create a folder called inc. Create a php file called breadcrumbs.php & then paste data.
  10.  
  11. Step Three
  12. ================
  13.  
  14. Call breadcrumbs.php in Theme Functions
  15.  
  16. include_once('inc/breadcrumbs.php');
  17.  
  18. Step Four
  19. ================
  20.  
  21. Use it by code below
  22.  
  23. <div class="breadcumbs">
  24. <?php if (function_exists('wordpress_breadcrumbs')) wordpress_breadcrumbs(); ?>
  25. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement