Created
March 1, 2013 19:07
-
-
Save richardegil/5066952 to your computer and use it in GitHub Desktop.
intranet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// search text | |
$key = wp_specialchars($s, 1); | |
if ( have_posts() ) : | |
<p>The following pages contain your search term, <strong>"<?php echo $key;?>"</strong>.</p> | |
// date comparison | |
// if date value is greater than yesterday's value | |
if( strtotime($date) > time()-86400 ){ | |
//do stuff | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment