. ********************************************************************/ add_filter('the_content', 'wpDiggConditional'); add_action('wp_head', 'wpDiggScript'); function wpDiggScript() { $root = get_option('siteurl'); echo "\r\n" . '' . "\r\n"; // If you use prototype.js already, you can comment out this line echo '' . "\r\n"; } function wpDiggConditional($content = '') { $root = get_option('siteurl'); $postID = get_the_ID(); $permalink = get_permalink(); $addition = '
'; return $addition . $content; }