Os arquivos externos são usados para exibir conteúdo externo em seu site WordPress. Com a ajuda de um shortcode, você pode fazer isso facilmente.
Instruções: Adicione o seguinte código ao arquivo functions.php de seu tema do WordPress para incluir o shortcode de arquivo externo.
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' );
Agora você pode usar esse shortcode fornecido abaixo com o link do arquivo externo para incluir o arquivo externo em suas postagens e páginas do WordPress.
[show_file file="http://www.mysite.com/somefile.html"]
Você também pode gostar de criar um formulário de upload de arquivo no WordPress.
Please consider to add a second version of your code which uses a transient which expires eg. every 24h or similar to avoid too frequent external file_get_contents() calls.
developer.wordpress.org/apis/handbook/transients/
Just Wow! I had a code working before but then the recent update messed it up and it’s now returning an error. I spent hours fixing it but turned out hopeless. I searched for a fix and found yours. Perfectly fits my code now. Thanks!
Hey, you’re welcome. We are glad to know that our code helped.
You’ve provided the solution to my countless hours of research in a minute. You are a darling.
Many thanks for the well explained and simple contribution.
I have searched for a long time at Google and Co. for such a code. All code’s tried so far have not worked.
But this one from the post works very well and has been written in an understandable way.
Only one little thing still bothers me.
If I call the link to be included directly, all letters are displayed correctly.
If I look at the included link in the WP, ö,ä,ü become funny with ? characters are displayed.
Why this, that in the file (link) to be included I have deposited the following code.
I also placed the line at WP, where I also placed the including link, but it didn’t work.
How can I still fix this small error?
Could you post an example of how the link changes?
It’s done. Thank you very much.
Glad it helped, Baba!
WP variables aren’t recognized in the included file. Also tried $_GET, $_POST but to no avail. How to fix this?..
This is not something that I have tried to do, however I’m not sure why you would want to include WP variables when you could do this within the post or using the functions.php and shortcode. What is it that you are trying to do, this may help me understand the best option.
This snipp has serious security implications. It could allow any editor or user to access and read the contents of any file on the server. You could use the WordPress built in HTTP API and use wp_remote_get instead of file_get_contents().
Good
Its sounds good but how to include code that works ? I mean, I have a nextgen gallery stuff I would include this way, but shortcode does not works (it show nextgen shortcode and not the thumbnails) also plugins does not works (such as auto-hyperlink, even css does not works) on the remote included file’s contents.
very nice!
Will this work in a widget area?
You would need to enable shortcode for widgets, eg:
add_filter(‘widget_text’, ‘do_shortcode’);