Advertisement
Guest User

Untitled

a guest
Aug 4th, 2010
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.92 KB | None | 0 0
  1. <?php
  2. function wishlist(){
  3. ?>
  4.  
  5. <?php if ( is_user_logged_in() && is_single() && !has_tag('blog') &&  !has_tag('gallery') : ?>
  6.                                 <?php if ( !bp_get_activity_is_favorite() ) : ?>
  7.                                         <a href="<?php bp_activity_favorite_link() ?>" class="fav" title="<?php _e( 'Mark as Favorite', 'buddypress' ) ?>"><?php _e( '<img src="http://www.clothunderground.com/wp-content/uploads/2010/07/heart.png">', 'buddypress' ) ?></a>
  8.                                 <?php else : ?>
  9.                                         <a href="<?php bp_activity_unfavorite_link() ?>" class="unfav" title="<?php _e( 'Remove Favorite', 'buddypress' ) ?>"><?php _e( '<img src="http://www.clothunderground.com/wp-content/uploads/2010/07/cross.png">', 'buddypress' ) ?></a>
  10.                                 <?php endif; ?>
  11. <?php endif; ?>
  12.  
  13. <?php
  14. }
  15. add_action( 'bp_adminbar_menus', 'wishlist', 15 );
  16.  
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement