<?php wp_flash_blogroll(); ?> in your templates~
Version: 1.0
Author: LL19.com
Author URI: http://www.ll19.com/
*/
function wp_flash_blogroll_out() {
$out .= "";
$out .= "";
return $out;
}
function wp_flash_blogroll() {
echo wp_flash_blogroll_out();
}
add_filter('the_content', 'wp_flash_blogroll_post_add', 99);
function wp_flash_blogroll_post_add($content) {
$content = str_replace("[wp_flash_blogroll]", wp_flash_blogroll_out(), $content);
return $content;
}
?>