Skip to content

Instantly share code, notes, and snippets.

@bewho
Forked from billerickson/functions.php
Created September 1, 2018 07:30
Show Gist options
  • Save bewho/44774e31a26126f71aaf62f2fbc192bb to your computer and use it in GitHub Desktop.
Save bewho/44774e31a26126f71aaf62f2fbc192bb 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