Answers for "how to add the css in the wordpress"

2

how to add css file in wordpress

wp_enqueue_style( 'style', get_stylesheet_uri() );
Posted by: Guest on May-28-2020
0

add stylesheet wordpress

function wpdocs_theme_name_scripts() {
    wp_enqueue_style( 'style-name', get_stylesheet_uri() );
    wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'wpdocs_theme_name_scripts' );
Posted by: Guest on June-07-2021

Code answers related to "how to add the css in the wordpress"

Browse Popular Code Answers by Language