Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created December 15, 2015 20:18
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save billerickson/820e277f8e89617c683c to your computer and use it in GitHub Desktop.
Save billerickson/820e277f8e89617c683c to your computer and use it in GitHub Desktop.
<?php
/**
* Enqueue 404 Script
*
*/
function be_404_script() {
if( is_404() )
wp_enqueue_script( 'be-404', get_stylesheet_directory_uri() . '/js/404.js', array( 'jquery' ), '1.0', true );
}
add_action( 'wp_enqueue_scripts', 'be_404_script' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment