Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.00 KB | None | 0 0
  1.  
  2.     <div class="post-meta <?php if(get_theme_mod('alder_post_related')) : ?>norelated<?php endif; ?>">
  3.        
  4.         <?php if(!is_single()) : ?>
  5.         <div class="read-more">
  6.             <a href="<?php echo get_permalink() ?>"><?php esc_html_e( 'Continue Reading', 'alder' ); ?> <i class="fa fa-angle-right" aria-hidden="true"></i></a>
  7.         </div>
  8.         <?php else : ?>
  9.         <?php if(!get_theme_mod('alder_post_share_author')) : ?>
  10.         <div class="meta-author">
  11.             <?php echo get_avatar( get_the_author_meta('email'), '60' ); ?><span class="by"><?php esc_html_e( 'by', 'alder' ); ?></span> <span class="vcard author"><span class="fn"><?php the_author_posts_link(); ?></span></span>
  12.         </div>
  13.         <?php endif; ?>
  14.         <?php endif; ?>
  15.        
  16.         <?php if(!get_theme_mod('alder_post_comment_link')) : ?>
  17.         <div class="meta-comment">
  18.             <a href="<?php comments_link(); ?>"><i class="fa fa-comment"></i> <?php comments_number( '0', '1', '%' ); ?></a>
  19.         </div>
  20.         <?php endif; ?>
  21.        
  22.         <?php if(!get_theme_mod('alder_post_share')) : ?>
  23.         <div class="post-share">
  24.             <a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=<?php the_permalink(); ?>"><i class="fa fa-facebook"></i></a>
  25.             <a target="_blank" href="https://twitter.com/intent/tweet?text=Check%20out%20this%20article:%20<?php print alder_social_title( get_the_title() ); ?>&url=<?php echo urlencode(the_permalink()); ?><?php if(get_theme_mod('alder_twitter')) : ?>&via=<?php echo esc_html(get_theme_mod('alder_twitter')); ?><?php endif; ?>"><i class="fa fa-twitter"></i></a>
  26.             <?php $pin_image = wp_get_attachment_url( get_post_thumbnail_id($post->ID)); ?>
  27.             <a data-pin-do="none" target="_blank" href="https://pinterest.com/pin/create/button/?url=<?php echo urlencode(the_permalink()); ?>&media=<?php echo esc_url($pin_image); ?>&description=<?php print alder_social_title( get_the_title() ); ?>"><i class="fa fa-pinterest"></i></a>
  28.             <a target="_blank" href="https://plus.google.com/share?url=<?php the_permalink(); ?>"><i class="fa fa-google-plus"></i></a>
  29.         </div>
  30.         <?php endif; ?>
  31.        
  32.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement