Answers for "include css and js in wordpres"

1

custom js css using wordpress hook

add_action('wp_enqueue_scripts','custom_script');
function custom_script()
{
	wp_enqueue_script('custom_script',get_template_directory_uri().'/js/custom.js');
}

add_action('wp_enqueue_scripts','custom_css');
function custom_css()
{
	wp_enqueue_style('style', get_template_directory_uri().'/css/custom.css');
}
Posted by: Guest on March-11-2022
3

how to add css file in wordpress

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

Browse Popular Code Answers by Language