Last active
August 29, 2015 14:28
-
-
Save khromov/fc389f857a602669e4c4 to your computer and use it in GitHub Desktop.
WordPress Instant Articles - Hint about subresources to load from a WordPress theme or child theme - https://wordpress.org/plugins/instant-articles/
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 | |
| add_filter('wpinstant_subresources', function($subresources) { | |
| //Will add link rel="subresource" for /style.css and /js/main.js in the theme folder. | |
| $subresources[] = get_stylesheet_directory_uri() . '/style.css'; | |
| $subresources[] = get_stylesheet_directory_uri() . '/js/main.js'; | |
| return $subresources; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment