Created
November 6, 2015 17:58
-
-
Save BoweFrankema/38f262c1f44844bfe1e1 to your computer and use it in GitHub Desktop.
Load AnsPress conditionally.
This file contains 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 | |
function wfc_load_anpress_when_needed() { | |
if ( is_anspress() ) { | |
ap_scripts_front(); | |
} | |
} | |
add_action('wp_enqueue_scripts', 'wfc_load_anpress_when_needed', 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment