Advertisement
Digitalraindrops

New Code Section

Sep 2nd, 2011
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.15 KB | None | 0 0
  1. <?php if (in_category('sponsored-posts')) : ?>
  2.     <!-- Add code for Sponsored Posts -->
  3.    
  4. <?php elseif (in_category('guest-posts')) : ?>
  5.     <div class="post_heading"><h2 class="left_heading <?php disable_author(); ?>">About Guest Article</h2></div><!-- #post_heading -->
  6.     <div class="author <?php disable_author(); ?>">
  7.         <div class="icon">
  8.             <?php echo get_avatar( get_the_author_email(), '75' ); ?>
  9.             <div class="title"><?php echo get_the_author_link(); ?></div><!-- #title -->
  10.         </div><!-- #icon -->
  11.         <div class="authorcontent">
  12.             <p><?php the_author_meta("description"); ?></p>
  13.         </div><!-- #content -->
  14.     </div><!-- #author -->
  15. <?php else : ?>
  16.     <div class="post_heading"><h2 class="left_heading <?php disable_author(); ?>">About Author</h2></div><!-- #post_heading -->
  17.     <div class="author <?php disable_author(); ?>">
  18.         <div class="icon">
  19.             <?php echo get_avatar( get_the_author_email(), '75' ); ?>
  20.             <div class="title"><?php echo get_the_author_link(); ?></div><!-- #title -->
  21.         </div><!-- #icon -->
  22.         <div class="authorcontent">
  23.             <p><?php the_author_meta("description"); ?></p>
  24.         </div><!-- #content -->
  25.     </div><!-- #author ? -->
  26. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement