Answers for "añadir hojas css externas a wordpress"

CSS
0

añadir hojas css externas a wordpress

add_action( 'wp_enqueue_scripts', 'agregar_hoja_estilos' );
function agregar_hoja_estilos'() {
    wp_enqueue_style( 'prefix-style', plugins_url('estilos.css', __FILE__) );
}
Posted by: Guest on July-18-2021

Code answers related to "añadir hojas css externas a wordpress"

Browse Popular Code Answers by Language