¿En qué directorio encuentro el archivo HTML de mis páginas de wordpress?
5 respuestas
- votos
-
- 2011-02-17
WordPress almacena contenidoen labase de datos,no hay archivosfísicos conel contenido de laspáginas (opublicaciones). Los archivos deplantilla deltema controlan cómo renderizar ymostrar su sitio,puedeencontraresos archivosen
wp-content/themes/YOUR-ACTIVE-THEME-NAME-HERE
..Puedeencontrarmuchainformación sobretemas y su desarrollo aquí.
http://codex.wordpress.org/Theme_DevelopmentPuedeencontrarinformación y orientación adicionales através de la otra documentación que seenumeraen la sección de recursos de lapágina vinculada anterior,aquíestápara referencia rápida.
http://codex.wordpress.org/Theme_Development#Resources_and_ReferencesUnabúsqueda rápidaen losforos de WordPresstambién le habríaproporcionado lainformaciónnecesaria (solo algoparateneren cuenta).
http://wordpress.org/search/where+is+content+stored? foros=1Espero quete ayude.
WordPress stores content in the database, there are not any physical files with the content of the pages(or posts). The theme's template files control how to render and display your site, you can find those files in
wp-content/themes/YOUR-ACTIVE-THEME-NAME-HERE
..You can find lots of information on themes and their development here.
http://codex.wordpress.org/Theme_DevelopmentAdditional information and guidance can be found through the other documentation listed in the resources section of the above linked page, here it is for quick reference.
http://codex.wordpress.org/Theme_Development#Resources_and_ReferencesA quick search of the WordPress forums would have also provided you with the information needed(just something to note).
http://wordpress.org/search/where+is+content+stored?forums=1Hope that helps.
-
- 2017-12-25
Puedeencontrar su archivo HTML raíz aquí: /public_html/wp-content/themes/ "TU NOMBRE DE TEMA" /framework/templates Un archivo llamado header.php debeestar ahí.
You can find your root HTML file in here: /public_html/wp-content/themes/"YOUR THEME NAME"/framework/templates A file named header.php has to be in there.
-
¡Gracias!Por cierto.paramí ahoraera directamente/public_html/wp-content/themes/{THEME}/header.phpThanks! Btw. for me now it was directly /public_html/wp-content/themes/{THEME}/header.php
- 0
- 2018-06-07
- Andrei Hardau
-
- 2011-02-17
Prateek,
Aunque depende deltema,muchos de loselementosestructuralesparael diseño de suspáginasestán contenidosen los archivos .php detemas.Vaya a DASHBOARD> ASPECTO> EDITOR y verá los archivos que componen lasplantillas y,en el caso de algunostemas,secciones de suspáginasmostradas.Puede acceder aestos archivos utilizandoeleditor de WordPress o uneditor detexto y realizar cambiosen laplantilla deltema,lo quepuedepermitirle realizar los cambios que desee (asegúrese detrabajar desde una copia hasta queesté satisfecho).
Si utilizaeltema Twenty-Ten comoejemplo,puedeencontrarel & lt;cuerpo>informaciónen el archivo header.php.
Prateek,
Although it is theme dependent, many of the structural elements for your pages design are contained in the themes .php files. Go to DASHBOARD > APPEARANCE > EDITOR and you will see the files that make up the templates and in the case of some themes, sections of your displayed pages. You can go into these files using the WordPress editor or a text editor and make changes to the theme template itself, which may allow you to make the changes you desire (be sure to work from a copy until you are satisfied).
Using the Twenty-Ten theme as an example, you can find the < body > information in the header.php file.
-
- 2018-07-01
El directorioen el queencontrará los archivos se ha respondido anteriormente.Pero sentí que habíamás que agregar.El archivopage.php contieneelmarcopara laspáginas de su sitio queno son supágina deinicio o supágina deblog/publicaciones. Por logeneral,verá cosas como
<?php get_header(): ?> <div class="container"> <?php the_content(); ?> </div>
Además de otras cosas,por supuesto.Pero loimportantees queel documentoentra y sale dephp a veces,yen elmedio hay un htmleditable. Espero queesto ayude
The directory that you would find the files has been answered above. But I felt that there was more to add. The page.php file contains the framework for pages on your site that are not your home page, or your blog/posts page. Usually you will see things like
<?php get_header(): ?> <div class="container"> <?php the_content(); ?> </div>
As well as other things of course. But what is important there is that the document drops in and out of php at times, and in between is edit-able html. I hope this helps
-
- 2020-07-09
Estaes la rutaprincipal al archivo Html almacenado únicamente /public_html/wp-content/themes/aquíelnombre de sutema/ y lapublicación y laspáginas se almacenanen unatabla debase de datos conelnombre wp_posts Sitiene más detalles al respecto,consulte ¿Dóndeestán laspáginas ypublicaciones de WordPress?Almacenado
This is the main path to stored Html file only /public_html/wp-content/themes/here your theme name/ and post and pages are stored in a database table name wp_posts If you more details about it go and check Where are WordPress Pages and Posts Stored
Megustaríaeditarmanualmenteel códigoen mispáginas de wordpress.Lainterfaz WP solome permiteeditarindividualmente CSS o PHP.Lafunción deedición depáginame da acceso a una determinadaparte del código,excluida laetiqueta del cuerpo.
Porfavor ayúdeme a localizarmis archivosen el servidor.
¡Graciasportu ayuda!
:)