Last active
September 15, 2017 14:17
-
-
Save richtabor/b47fdc6c6f3b8de56a572b8ce3216096 to your computer and use it in GitHub Desktop.
More info: http://richtabor.com/themeforest-tips/
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
<?php | |
/** | |
* Third Party Styles | |
* More info: https://github.com/grappler/wp-standard-handles | |
*/ | |
// Incorrect | |
wp_enqueue_style( 'prefix-font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array(), '4.2.0', 'all' ); | |
// Corrrect | |
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array(), '4.2.0', 'all' ); | |
/** | |
* Third Party Scripts | |
*/ | |
// Incorrect | |
wp_enqueue_script( 'prefix-fitvids', get_template_directory_uri() . '/js/jquery.fitvids.js', array( 'jquery' ), '1.1.1', true ); | |
// Corrrect | |
wp_enqueue_script( 'jquery-fitvids', get_template_directory_uri() . '/js/jquery.fitvids.js', array( 'jquery' ), '1.1.1', true ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment