0
X
Add Snippet To Project
New Project
Add To Existing Project
/**
* Registers a custom style to be used on the front-end of the website.
*
* @return void
*/
function wpturbo_register_my_custom_styles() : void {
wp_register_style( 'sitilmsi', get_template_directory_uri() . 'style.css', ['color', 'fonts'], '3.1' );
wp_enqueue_style( 'sitilmsi' );
}
add_action( 'wp_enqueue_scripts', 'wpturbo_register_my_custom_styles' );
alıştırma turları