"") { $link = get_permalink(); $content .= " $more"; } return $content; } function auto_excerpt_notice() { echo "

You are currently using Auto Excerpt to show only excerpt of the posts

"; } function auto_excerpt_init() { if(!is_single() && !is_page()) add_filter('the_content','auto_excerpt',100); echo "\n\n"; } function auto_excerpt_options() { add_options_page('Auto Excerpt', 'Auto Excerpt', 'manage_options','auto-excerpt/options.php'); } add_action('the_post', 'auto_excerpt_init'); add_action('rightnow_end','auto_excerpt_notice'); add_action('admin_menu','auto_excerpt_options'); ?>