Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. function ach_bp_breadcrumb( $last_part = '' ){
  2.     $id = bp_displayed_user_id();
  3.     $user = get_userdata( $id );
  4.     ?>
  5.     <div id="bp_breadcrumb">
  6.     <a href="<?php bloginfo('siteurl')?>" title="Go to Home.">Home</a> &nbsp;/&nbsp;
  7.     <a href="<?php bloginfo('siteurl')?>/meet-the-drink-experts/" title="Meet the Drink Experts">Meet the Drink Experts</a> <?php ( $last_part == '/' ) ? print('') : print('&nbsp;/&nbsp;') ; ?>
  8.     <?php
  9.     if( $last_part ){
  10.         echo $last_part;
  11.     }
  12.     else{
  13.         echo $user->display_name ;
  14.     }
  15.     ?>
  16.     </div>
  17.     <?php
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement