Advertisement
rejuancse

creator-info

Sep 13th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.83 KB | None | 0 0
  1.  <?php
  2. if ( ! defined( 'ABSPATH' ) ) {
  3.     exit; // Exit if accessed directly
  4. }
  5.  
  6. global $post;
  7. $user_info = get_user_meta($post->post_author);
  8. $creator = get_user_by('id', $post->post_author);
  9. ?>
  10.  
  11. <div class="wpneo-campaign-creator-info-wrapper">
  12.     <div class="wpneo-campaign-creator-avatar">
  13.         <?php if ( $post->post_author ) {
  14.             $img_src    = '';
  15.             $image_id = get_user_meta( $post->post_author,'profile_image_id', true );
  16.             if( $image_id != '' ){
  17.                 $img_src = wp_get_attachment_image_src( $image_id, 'backer-portfo' )[0];
  18.             } ?>
  19.             <?php if( $img_src ){ ?>
  20.                 <img width="80" height="80" src="<?php echo $img_src; ?>" alt="">
  21.             <?php } else { ?>
  22.                 <?php  echo get_avatar($post->post_author, 80); ?>
  23.             <?php } ?>
  24.         <?php } ?>
  25.     </div>
  26.     <div class="wpneo-campaign-creator-details">
  27.         <p><a href="javascript:;" data-author="<?php echo $post->post_author; ?>" class="wpneo-fund-modal-btn" ><?php echo wpneo_crowdfunding_get_author_name();
  28.         ?></a> </p>
  29.  
  30.         <p><?php echo wpneo_crowdfunding_author_all_campaigns()->post_count + 1; ?> <?php _e("Campaigns", "wp-crowdfunding"); ?> | <?php echo wpneo_loved_campaign_count(); ?> <?php _e("Loved campaigns","wp-crowdfunding"); ?></p>
  31.         <?php if ( ! empty($user_info['profile_website'][0])){ ?>
  32.             <p><a href="<?php echo wpneo_crowdfunding_add_http($user_info['profile_website'][0]); ?>"><strong> <?php echo wpneo_crowdfunding_add_http($user_info['profile_website'][0]); ?></strong></a></p>
  33.         <?php } ?>
  34.         <p><a href="javascript:;" data-author="<?php echo $post->post_author; ?>" class="wpneo-fund-modal-btn wpneo-link-style1"><strong><?php _e('See full bio.', 'wp-crowdfunding'); ?></strong></a></p>
  35.     </div>
  36. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement