Skip to content

Instantly share code, notes, and snippets.

@khromov
Created August 23, 2015 23:08
Show Gist options
  • Select an option

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

Select an option

Save khromov/794fac52b3d90d8c8e43 to your computer and use it in GitHub Desktop.
WordPress Instant Articles - Prerender specific pages - https://wordpress.org/plugins/instant-articles/
<?php
add_filter('wpinstant_prerendered_urls', function($urls) {
if ( is_front_page() ) {
$posts = array( 1,2,3);
foreach($posts as $post) {
$permalink = get_permalink( $post );
if($permalink) {
$urls[] = $permalink;
}
}
}
return $urls;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment