Встраивание любых внешних файлов

Шорткод:

[show_file file="http://www.test.com/test.html"]

functions.php:

function show_file_func( $atts ) {
  extract( shortcode_atts( array(
    'file' => ''
  ), $atts ) );
 
  if ($file!='')
    return @file_get_contents($file);
}
 
add_shortcode( 'show_file', 'show_file_func' );