You know those moments where you have many ideas for blog posts, all at once? And, really, you would love to post them all — but publish them spaced out a bit better, just because you like to have a steady stream of posts out in your blog. You can delay the publication of a post in wordpress manually — just set a date in the future.
But is there a wordpress plugin that automatically schedules posts so that, for example, the time between two posts is 3 days?
Lazyweb? Lazyweb? Anyone?
Published by dekay on October 22, 2006
in Uncategorized.
If anyone wonders why this blog has been reverted to plain k2: I just upgraded to the current version of k2 (0.9.1) from the old beta 2… and some things broke. No matter, I don’t feel like re-designing the site now, so here it goes… brand new k2, but just the plain old look.
Published by dekay on January 15, 2006
in Uncategorized.
Structured Blogging is a very useful plugin for both wordpress and movable type that allows you to create posts with massive amounts of metadata in many formats. Thus hopefully accelerating the transformation of the “old” web to a much more useful and meta-tagged/meta-boosted web.
Published by dekay on November 28, 2005
in Uncategorized.
I am using the $dt->blog(); » Google analytics plugin here on this site, but for tracking outgoing link clicks I have had to modify the plugin like this:
add_filter('the_content', 'ga_addonclick', 10);
function ga_addonclick($value){
if(get_option('ga_onclick')){
$value = preg_replace("/<a href=\"([^\"]+)\”/e”,
“‘<a href=\’$1\’ rel=\’nofollow\’ onclick=\”.ga_parseurl(’$1′).’\”” ,$value);
}
return $value;
}
function ga_parseurl($href){
$onclickcode = stripslashes(get_option(’ga_onclick_code’));
$href = str_replace(’http://’, ”, $href);
return str_replace(’$site’,$href,$onclickcode);
}
Recent Comments