This file contains 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
$args = array( 'numberposts' => '150' ); | |
$recent_posts = wp_get_recent_posts( $args ); | |
foreach( $recent_posts as $recent ){ | |
$post = get_post($recent["ID"]); | |
$content = apply_filters('the_content', $post->post_content); | |
$content = strip_tags($content,"<p><br><a><img><ul><li>"); | |
$content = str_replace('style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"',"",$content); | |
$content = str_replace('style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"',"",$content); | |
$content = str_replace('border="0"',"",$content); |
This file contains 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
<script> | |
var title = document.title; | |
var blurMessage = [ | |
"Please come back! :-( ", | |
"Don't you love me anymore? :-(", | |
"Fancy a cookie? ", | |
"I'm feeling lonely :-( ", | |
"I need a hug... ", | |
"Just checking my email...", | |
"Let's have a pizza party!", |
OlderNewer