Skip to content

Instantly share code, notes, and snippets.

@richtabor
Last active September 15, 2017 14:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richtabor/b47fdc6c6f3b8de56a572b8ce3216096 to your computer and use it in GitHub Desktop.
Save richtabor/b47fdc6c6f3b8de56a572b8ce3216096 to your computer and use it in GitHub Desktop.
<?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