Skip to content

Instantly share code, notes, and snippets.

@vietrick
Last active February 19, 2022 10:55
Show Gist options
  • Save vietrick/a8d0298cde592e94b8489cf7b9c1a223 to your computer and use it in GitHub Desktop.
Save vietrick/a8d0298cde592e94b8489cf7b9c1a223 to your computer and use it in GitHub Desktop.
Chèn CSS vào Wordpress
/**
@ VIETRICK: Chèn CSS vào theme
@ sử dụng hook wp_enqueue_scripts() để hiển thị nó ra ngoài front-end
**/
function vietrick_styles() {
/*
* Hàm get_stylesheet_uri() sẽ trả về giá trị dẫn đến file style.css của theme
* Nếu sử dụng child theme, thì file custom-style.css này vẫn load ra từ theme chính
*/
wp_register_style( 'custom-style', get_template_directory_uri() . '/custom-style.css', 'all' );
wp_enqueue_style( 'custom-style' );
}
add_action( 'wp_enqueue_scripts', 'vietrick_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment