stilimsi

Home » Snippets » stilimsi
0

Created with:

Register Style Generator

Visibility: 

public

Creator: Root

Customize with WPTurbo AI
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ı

Register an account to save your snippets or go Pro to get more features.