lo único que te puedo decir es que es muy rápido y sencillo, solo tienes que ir añadiendo cosas es fácil, cuidado con las imágenes pesadas y puglins y también te recomiendo Astra es otro tema rápido, bonito y sencillo.
-
This reply was modified 7 years, 4 months ago by
mateobedoya22.
-
This reply was modified 7 years, 4 months ago by
Andrew Nevins. Reason: Removed backlinks and verbiage
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
@mateobedoya22 I’m afraid we don’t allow backlinks when helping out on the forums
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
@wdevsitegmailcom, What do you need help with? You need to ask a pragmatic question.
Thread Starter
Ernesto
(@wdevsitegmailcom)
I’m doing tests on my local server with the following code
style.css
/*
Theme Name: Twenty Nineteen
Theme URI: https://wordpress/twentynineteen-child
Author: Develop Site
Author URI: https://wordpress.develop-site.com
Template: twentynineteen
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: twenty-nineteen-child
*/
/* =Aquí empieza la personalización de tu tema
————————————————————–
*/
functions.php
<?php //Etiqueta PHP de inicio
// Funcion a nuestro gusto que queramos incluir
function favicon_link() {
echo ‘<link rel=”shortcut icon” type=”image/x-icon” href=”/favicon.ico” />’ . “\n”;
}
add_action( ‘wp_head’, ‘favicon_link’ );
wp_enqueue_style ();
?> //Etiqueta PHP de cierre
but it does not work. Does not detect the style sheet
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
I would double check the docmentation here: https://developer.ww.wp.xz.cn/themes/advanced-topics/child-themes/
Make sure it works first before changing things from the documentation – for instance your Theme Name is different from the documentation.