X

Incluir código corto de archivo externo

Snippets by IsItWP

Los archivos externos se utilizan para mostrar contenido externo en su sitio web WordPress. Con la ayuda de un shortcode, puedes conseguirlo fácilmente.

Instrucciones: Añade el siguiente código al archivo functions.php de tu tema de WordPress para incluir el shortcode de archivos externos.

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' );

Ahora puede utilizar este shortcode dado a continuación con su enlace de archivo externo para incluir el archivo externo en sus entradas y páginas de WordPress.

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

También puede disfrutar de la creación de un formulario de carga de archivos en WordPress.

Comentarios   Deja una respuesta

  1. 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/

  2. 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!

    1. Hey, you’re welcome. We are glad to know that our code helped.

  3. You’ve provided the solution to my countless hours of research in a minute. You are a darling.

  4. 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?

    1. Could you post an example of how the link changes?

  5. It’s done. Thank you very much.

    1. Glad it helped, Baba!

  6. WP variables aren’t recognized in the included file. Also tried $_GET, $_POST but to no avail. How to fix this?..

    1. 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.

  7. Chris Olbekson agosto 6, 2013 en 2:52 pm

    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().

  8. Good

  9. 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.

  10. very nice!

  11. Will this work in a widget area?

    1. You would need to enable shortcode for widgets, eg:

      add_filter(‘widget_text’, ‘do_shortcode’);

Añadir un comentario

Nos alegra que haya decidido dejar un comentario. Tenga en cuenta que todos los comentarios se moderan de acuerdo con nuestra política de privacidad , y que todos los enlaces son nofollow. NO utilice palabras clave en el campo del nombre. Tengamos una conversación personal y significativa.

WordPress Launch Checklist

La lista definitiva para lanzar WordPress

Hemos recopilado todos los elementos esenciales de la lista de comprobación para el lanzamiento de su próximo sitio web de WordPress en un práctico ebook.
Sí, envíeme el ¡gratuito!