Enlazar estilos a un Tema Hijo

Creamos la función para los estilos

Si tenemos un tema hijo y queremos crear estilos nuevos para nuestro sitio, podemos usar la siguiente función en el functions.php de nuestro tema hijo:

 

function child_theme_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_uri() );
}
add_action( 'wp_enqueue_scripts', 'child_theme_styles', 15 );

También lo podemos hacer creando un plugin para los estilos.

Ver más tips