"><?php 
echo $curauth->facebook;
?>
</a></p>
      <p style="padding:5px 0px 0px 0px;"class="custom_small-font">Twitter</br><a target="_blank" href="<?php 
echo $curauth->twitter;
?>
"><?php 
echo $curauth->twitter;
?>
</a></p>
<!--     wti like / body content  -->      
      <div style="height: 21px; max-width: 437px; padding:0px 2px 5px 0px; font-size:14px; margin-left: -163px;">
       <?php 
if (function_exists('wp_ulike')) {
    wp_ulike('get');
}
?>
     
      </div>
     </td>
    </table>
   </div>

<!-- (1) info description-->    
  <label style="text-align:left; background-color:#282828; border: solid 1px #e0e0e0; padding: 10px 0px 2px 7px; color:#e0e0e0;" class="collapse" for="_1"><span class="dashicons dashicons-admin-home" style="position: relative; top: -5px; left: 0px; z-index: 5;"></span>Bio</label>
     <div style="background-color:#eeeeee; padding:2px;">    
               <table class="custom-table-style">
                <tr>
        <td class="custom-td-bg_2">
         <p class="custom_small-font">            
Example #2
0
 function wp_ulike_put_posts($content)
 {
     //auto display position
     $position = wp_ulike_get_setting('wp_ulike_posts', 'auto_display_position');
     $button = '';
     //add wp_ulike function
     if (!is_feed() && wp_ulike_post_auto_display_filters()) {
         $button = wp_ulike('put');
     }
     //return by position
     /*if($position=='bottom')
     		return $content . $button;
     		else if($position=='top')
     		return $button . $content;
     		else if($position=='top_bottom')
     		return $button . $content . $button;
     		else*/
     return '<div class="col-md-10"> ' . $content . '</div><div class="col-md-2">' . $button . ' </div>';
 }
Example #3
0
 function wp_ulike_put_posts($content)
 {
     //auto display position
     $position = wp_ulike_get_setting('wp_ulike_posts', 'auto_display_position');
     $button = '';
     //add wp_ulike function
     if (!is_feed() && wp_ulike_post_auto_display_filters()) {
         $button = wp_ulike('put');
     }
     //return by position
     if ($position == 'bottom') {
         return $content . $button;
     } else {
         if ($position == 'top') {
             return $button . $content;
         } else {
             if ($position == 'top_bottom') {
                 return $button . $content . $button;
             } else {
                 return $content . $button;
             }
         }
     }
 }