Created
January 6, 2018 02:56
-
-
Save amElnagdy/f664e0051030593d6f26c6584cd1f8ad to your computer and use it in GitHub Desktop.
This file contains hidden or 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
function custom_style() { | |
if ( is_page( 'PAGE_ID' ) ) { | |
wp_enqueue_style( 'home', get_stylesheet_directory_uri() . '/home.css' ); | |
} | |
} | |
add_action( 'wp_enqueue_scripts', 'custom_style' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment