Created
May 30, 2014 15:20
-
-
Save krmd/dadae219f638e7d56d1f to your computer and use it in GitHub Desktop.
WooTheme Canvas: Related Posts Thumbnails
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
// 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