Advertisement
Guest User

sticky

a guest
Sep 11th, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. ORIGINAL CODE:
  2.  
  3. <?php if ( is_sticky() ) : ?>
  4.  
  5. <hgroup>
  6. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  7. <h3 class="entry-format"><?php _e( 'Featured', 'twentyeleven' ); ?></h3>
  8. </hgroup>
  9.  
  10. <?php else : ?>
  11. <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
  12.  
  13. <?php endif; ?>
  14.  
  15. # # # # # # # # # # # #
  16.  
  17. I CHANGED IT TO THIS ONE:
  18.  
  19. <?php if ( !is_sticky() ); ?>
  20.  
  21. <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
  22.  
  23. <?php else : ?>
  24.  
  25. <hgroup>
  26. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
  27. <h3 class="entry-format"><?php _e( 'Featured', 'twentyeleven' ); ?></h3>
  28. </hgroup>
  29.  
  30. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement