Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1.                     <div class="col-sm-3 col-xs-6 wfp_button">
  2.                         <?php
  3.                             if( is_user_logged_in() ){
  4.                                 echo '<span class="option">';
  5.                                     if( function_exists( 'wfp_button' ) ){
  6.                                         wfp_button();
  7.                                     }
  8.                                 echo '</span>';
  9.                             }
  10.                             else{
  11.                                 ?>
  12.                                     <a href="<?php echo esc_url( wp_login_url( get_permalink() ) );?>" class="option">
  13.                                         <i class="fa fa-star-o" aria-hidden="true"></i>
  14.                                         <span class="option-text">
  15.                                             <?php esc_html_e( 'Login to bookmark', 'mars' );?>
  16.                                         </span>
  17.                                     </a>
  18.                                 <?php
  19.                             }
  20.                         ?>
  21.                     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement