Skip to content

Instantly share code, notes, and snippets.

@khromov
Last active August 29, 2015 14:28
Show Gist options
  • Select an option

  • Save khromov/fc389f857a602669e4c4 to your computer and use it in GitHub Desktop.

Select an option

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/
<?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