Tag: adding css file

  • WordPress – wp_register_style

    The below function is used to include or register stylesheets, which takes various parameter. There are other parameters as well. Hooks are registered in functions.php file https://developer.wordpress.org/reference/functions/wp_register_style/ Note: The styles are registered using a add_action hook Example: Example Note: wp_register_style only registers the style, but it doesn’t actually load the file.To Load the file must…