Last active
February 19, 2022 10:55
-
-
Save vietrick/a8d0298cde592e94b8489cf7b9c1a223 to your computer and use it in GitHub Desktop.
Chèn CSS vào Wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
@ 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