با اضافه کردن این مد به functions.php ، به شما این امکان داده میشه که شما محتوای یک فایل خارجی رو در داخل صفحه پست با استفاده از short code قرار بدین:
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' );
و شورت کد مربوطه برای درج در پست :
[show_file file="http://wp-persian.com/data.html"]