Skip to content

Instantly share code, notes, and snippets.

@krmd
Created May 30, 2014 15:20
Show Gist options
  • Save krmd/dadae219f638e7d56d1f to your computer and use it in GitHub Desktop.
Save krmd/dadae219f638e7d56d1f to your computer and use it in GitHub Desktop.
WooTheme Canvas: Related Posts Thumbnails
// Start custom_add_related_posts()
add_action( 'woo_post_inside_after', 'custom_add_related_posts' );
function custom_add_related_posts () {
if ( is_single() ) {
echo '<h3>You may also like to read:</h3></br>';
echo do_shortcode('[related_posts limit="4" image="120"]');
}
} // End woo_add_related_posts()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment