', ']]>', $content); echo $content; } function NST_get_the_content() { global $post; // Password checking copied from get_the_content() if ( !empty( $post->post_password ) ) if ( stripslashes( $_COOKIE['wp-postpass_'.COOKIEHASH] ) != $post->post_password ) return get_the_password_form(); return $post->post_content; } //Integrate into WP add_filter( 'the_content', 'NST_CheckRSS', 10001, 1 ); //After all other filters have loaded... add_filter( 'option_rss_use_excerpt', create_function( '$a=0', 'return 1;' ) ); //Set RSS options to summary, not full text. ?>