Advertisement
srikat

Untitled

Jan 13th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. add_action( 'genesis_entry_content', 'sk_display_new', 9 );
  2. function sk_display_new() {
  3.  
  4.     // if the current page is not the Posts page (as set at Settings > Reading), go away
  5.     if ( ! is_home() )  {
  6.         return;
  7.     }
  8.  
  9.     global $post;
  10.  
  11.     if ( strtotime( $post->post_date ) > strtotime( '-7 days' ) ) {
  12.         echo '<span style="color:#863136;font-size:16px;text-align:center;"><b>NY! (Siste 7 dager)</b></span>';
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement