这并不难-取决于你想要它在哪里:
<?php
/* Plugin Name: (#21153) Open links in new window/tab */
function wpse21153_open_new_window( $content )
{
// Add all your statements, when a link has to open in a new tab, here.
if ( is_page() )
return link_add_target( $content );
return $content;
}
foreach( array( \'content\', \'excerpt\' ) as $location )
add_action( "the_{$location}", \'wpse21153_open_new_window\' );