Incluya un archivo PHP externo en una plantilla personalizada de Wordpress
-
- 6
¿Esposibleincluir un archivo PHPexternoen unaplantillapersonalizada? dos Estoytratando de agregar unblog ami sitio. Yatengoel diseño delencabezado,pie depágina ybarra lateralen mi sitio. ¿Puedo usarlosen miplantillapersonalizada?¡Tambiénprobé:php theme-development customization include
-
-
Eche un vistazo a http://codex.wordpress.org/Integrating_WordPress_with_Your_Websitepara responder a supregunta.Take a look at http://codex.wordpress.org/Integrating_WordPress_with_Your_Website should answer your question.
- 0
- 2013-08-26
- Mark Davidson
-
Puedes usarlo.¿Cuáleselproblema al quete enfrentas?You can use it. What's the problem are you facing?
- 1
- 2013-08-26
- Vinod Dalvi
-
hola,acabo de copiarmis archivos dentro de la carpeta de wordpress y los vinculé correctamente ... detodosmodos,¿cuáles la respuesta aestapregunta?Acabo de recibir unapáginaen blancohi, i just copied my files inside the wordpress folder and linked them properly.. anyway, whats the answer on this question? I just get a blank white page
- 0
- 2013-08-26
- Jeremi Liwanag
-
Para que quede claro,¿estáintentandoincluir archivos que seencuentranen un sitioexterno?Sies así,¿lospermisos actuales del sitio de archivosphppermitenel accesopúblico de lectura aestos archivos?Just to be clear, you are trying to include files that are located on an external site? If so, do the current permissions of the php files site allow public read access to these files?
- 0
- 2014-02-13
- iyrin
-
6 respuestas
- votos
-
- 2014-03-25
No,nopuedeincluir archivos PHPen untema de laforma queindicó.
bosque Para verpor qué,todo lo quetenemos que haceresejercitar algo de sentido común ypensamiento críticobásico:- Estaría realizando una solicitud remota a un servidor remoto
include
nopuede haceresto - Sipor algúnmilagrofuncionara,tendrías ungranexploit de seguridad,ya que yopodría hacer algo comoesto:
include( 'http://yoursite/wp-config.php' ); echo DB_PASSWORD;
. Imagínate lofácil que sería hackear sitios web! ¿Quéme impideincluirfacebook.com/index.php
? - Siinclusoentonces de algunamanerafuncionó,yfue seguro,¡imagínese la lentitud! Haces una solicitud al servidor,y luegoel servidor va y hace otraparaelencabezado,otrapara labarra lateral,y otraparaelpie depágina,todaesaespera,¿a quiénpodríamolestar?
- Perofinalmente,incluso siincludepodría realizar solicitudes remotas. Lo quenopuede,¿por qué devolvería código PHP? ¿No devolverá lo queescupeel servidor,también conocido comoel htmlfinalizado? El servidorejecuta cualquier PHP antes de que se devuelva,por lo queno habrá PHPen lo queincluye ..
En su lugar,solopuedeincluir archivos del sistema de archivos localen el que seestáejecutando su servidor. Nuncapasaría una URL a una declaración deinclusión o requerimiento.
Entonces,siestoyen index.php,y hay un archivoen lamisma carpeta llamado sidebar.php,loincluiría así:
include('sidebar.php');
include
devuelve un valor siestofalla. La semántica de la declaración deinclusiónes PHPbásicogeneral yestáfuera detemaen este sitio depreguntas y respuestas.Paraincluir unaparte de laplantillaen untema,use:
get_template_part( 'partname' );
Estafuncióntambiénbuscará dentro de untemaprincipal o secundario laparte queespecificó.
aña Porejemplo,en este código:get_template_part( 'sidebar', 'first' );
- tema hijo
sidebar-first.php
- temaprincipal
sidebar-first.php
- tema hijo
sidebar.php
- temaprincipal
sidebar.php
Cabe señalar que solo debe usarget_template_partparaincluir archivos deplantilla. No lo useparaincluir archivos comobibliotecas u otros archivos PHP quenogeneren html.
Le sugiero que lea los siguientestemas antes de continuar:
- lasfuncionesinclude y requireen PHP.Net
- temasparapadrese hijos
- lajerarquía de laplantilla y cómo WordPresselige quéplantilla usar
-
<?php php ?> <?php tag ?> <?php spam ?> <?php and ?> <?php why ?> <?php its ?> <?php bad ?>
-
get_template_part
- la API
WP_HTTP
,paraesosmomentosgenuinos que realmentenecesitas hacer una solicitud remota a una API. Funciones comowp_remote_get
ywp_remote_post
ayudarán aquí. - Depuración de PHP. Suspáginasblancas sonerroresfatales de PHP,pero debido a quetiene configuradoel registro deerrorespara ocultarlo desde lainterfaz,se registraen un archivo de registro deerrores queno conoce. Encuentratu registro deerrores,define
WP_DEBUG
en tuwp-config.php
e instala un complemento como labarra de depuración oelmonitor de consultas,estoste ayudaránenormemente. Sinembargo,asegúrese de llamar awp_footer
en elpie depágina de susplantillas.
No, you cannot include PHP files in a theme the way you indicated.
To see why, all we have to do is exercise some common sense and basic critical thinking:
- You would be doing a remote request to a remote server
include
cannot do this - If by some miracle it worked, you would have a major security exploit as I could then do something like this:
include( 'http://yoursite/wp-config.php' ); echo DB_PASSWORD;
. Imagine how easy it would be to hack websites! Whats to stop me includingfacebook.com/index.php
? - If even then it somehow worked, and it was secure, imagine the slowness! You make a request to the server, and then the server goes and makes another for the header, and another for the sidebar, and another for the footer, all that waiting, who could be bothered?
- But finally, even if include could make remote requests. Which it can't, why would it return PHP code? Won't it return what the server spits out, aka the finalised html? The server runs any PHP before it gets returned so there'd be no PHP in what your including..
So no, it's not possible. But a quick copy paste of the code in your question into a PHP script followed by a quick visit would have told you that quicker than anybody here.
Instead, you can only include files from the local file system your server is currently running on. You would never pass in a URL to an include or a require statement.
So if I'm in index.php, and there is a file in the same folder called sidebar.php, I would include it like this:
include('sidebar.php');
include
returns a value if this failed. The semantics of the include statement are general basic PHP and are off topic on this Q&A site.However I kept this question open because there is a WordPress API function you should be using instead that is better than include and require for what you need.
To include a template part in a theme, use:
get_template_part( 'partname' );
This function will also look inside a child or parent theme for the part you specified.
For example, in this code:
get_template_part( 'sidebar', 'first' );
It will look for and include the first it finds of these:
- child theme
sidebar-first.php
- parent theme
sidebar-first.php
- child theme
sidebar.php
- parent theme
sidebar.php
It should be noted, that you should only use get_template_part to include template files. Don't use it to include files such as libraries, or other PHP files that do not output html.
I suggest you read up on the following subjects before continuing:
- the include and require functions on PHP.Net
- parent and child themes
- the template hierarchy and how WordPress chooses which template to use
<?php php ?> <?php tag ?> <?php spam ?> <?php and ?> <?php why ?> <?php its ?> <?php bad ?>
get_template_part
- the
WP_HTTP
API, for those genuine times you really need to do a remote request to an API. Functions such aswp_remote_get
andwp_remote_post
will help here. - PHP Debugging. Your white pages are PHP Fatal errors, but because you have error logging set to hide it from the front end, it's being logged to an error log file you're unaware of. Find your error log, define
WP_DEBUG
in yourwp-config.php
and install a plugin such as debug bar or query monitor, these will help you enormously. Make sure you callwp_footer
in your templates footer though.
-
- 2014-02-13
suponga quetiene este cenario:
Suinstalación de wordpressestá alojadaen la carpeta raíz 'www' como su sitio,y su header.phpestáen la carpeta 'www/includes'.
En sutema de WordPress,simplemente agregue
& lt;?php include ('incluye/header.php'); ?>
Cuando WordPress lee archivos detema,usa la ruta raíz.
suppose you have this cenario:
Your wordpress instalation is hosted on 'www' root folder as your site, and your header.php is on 'www/includes' folder.
In you wordpress theme, just add
<?php include('includes/header.php'); ?>
When WordPress reads theme files, it uses the root path.
-
- 2014-02-03
¡Nopuedeincluir un recursoexternoen lasfunciones
include()
!Incluyatrabajospor rutasinternas del servidor.Nopuedeincluir una URL como desee.¡Es unproblema de seguridad de PHP!Puede utilizar:
get_file_contents('http://your.url');
o usa unabiblioteca Curl.
You cannot include an external resource on
include()
functions! Include works by server internal paths. You cannot include an url as you want. It's a PHP security problem!You can use:
get_file_contents('http://your.url');
or use a Curl library.
-
Agregue unabuena cantidad deexplicación a sus respuestaspara ayudar al usuario a comprender supunto.Please add a good deal of explanation to your answers to help the user understand your point.
- 1
- 2014-02-03
- Maruti Mohanty
-
- 2017-01-12
Cuando verifiqué los archivosprincipales,el siguienteesel código queencontrépara enel archivo
wp/wp-includes/general-template.php
para lafunciónget_header()
encontré las siguientes líneas
$templates[] = 'header.php'; locate_template( $templates, true );
Entonces loestoy usandoen mi código (
index.php
) así<?php get_header(); $myphpfile[] = 'grid.php'; locate_template( $myphpfile, true ); ?>
When i checked the core files following is the code i found for in the file
wp/wp-includes/general-template.php
for functionget_header()
i found following lines
$templates[] = 'header.php'; locate_template( $templates, true );
So I am using it in my code (
index.php
) like this<?php get_header(); $myphpfile[] = 'grid.php'; locate_template( $myphpfile, true ); ?>
-
- 2018-04-24
Paratemainfantil:
<?php echo get_stylesheet_directory_uri().'/subfoldername/add.php';?>
Puede utilizar
For Parent Theme: get_template_directory() or get_template_directory_uri() For Child Theme: get_stylesheet_directory() or get_stylesheet_directory_uri()
For Child Theme:
<?php echo get_stylesheet_directory_uri().'/subfoldername/add.php';?>
You can use
For Parent Theme: get_template_directory() or get_template_directory_uri() For Child Theme: get_stylesheet_directory() or get_stylesheet_directory_uri()
-
- 2020-05-04
Puede queno sea unabuenaformapublicar unapreguntatan antigua,pero recientementetuve que hacer algo similar yencontréeste resultadomientras usaba unmétodo queno semuestra aquí. Apuntándoloparafuturosexploradores;).
Mi caso de usofue:
- Wordpressinstaladoen subdirectorio
- Queríaincluirelementos depie depágina/encabezado del sitioprincipal,en lugar de usar wordpressparaestoselementos
Debido a que
include()
orequire()
pueden usar rutas de servidor absolutas (porejemplo:/var/www/vhosts/foo.bar/httpdocs/includes/baz.php
),podemos usar la definiciónABSPATH
de Wordpressparageneraresto:include( dirname( ABSPATH ) . '/includes/header.php' );
añaesto devolverá/var/www/vhosts/foo.bar/httpdocs/includes/baz.php
.Incluso cuando Wordpressestáen un subdirectorio (porejemplo:
Esposible que haya otrasmaneras de haceresto,usandoel/var/www/vhosts/foo.bar/httpdocs/blog/
),dirname( ABSPATH )
nos daindependientemente de la raíz del documento.$_SERVER['DOCUMENT_ROOT']
superglobal,porejemplo,peronoexploréeso.Might be poor form to post on such an old question, but I recently had to do something similar and found this result while using a method not shown here. Jotting it down for future explorers ;).
My use case was:
- Wordpress installed in subdirectory
- I wanted to include footer/header elements from the parent site, rather than using wordpress for these elements
Because
include()
orrequire()
can use absolute server paths (eg:/var/www/vhosts/foo.bar/httpdocs/includes/baz.php
), we can use Wordpress'ABSPATH
definition to generate this:include( dirname( ABSPATH ) . '/includes/header.php' );
this will return
/var/www/vhosts/foo.bar/httpdocs/includes/baz.php
.Even when Wordpress is in a subdirectory (eg:
/var/www/vhosts/foo.bar/httpdocs/blog/
),dirname( ABSPATH )
gives us the document root regardless.There might be other ways to do this, using the
$_SERVER['DOCUMENT_ROOT']
superglobal for example, but I didn't explore that.