Created
May 4, 2015 17:19
-
-
Save eri-trabiccolo/edbcd7d7909ff5fe2ef6 to your computer and use it in GitHub Desktop.
Thumbnails in single selected posts
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
add_filter('tc_opt_tc_single_post_thumb_location', 'show_post_thumb'); | |
function show_post_thumb( $opt ){ | |
//posts id | |
$my_posts = array( | |
1, | |
2, | |
3, | |
); | |
return is_single( $my_posts ) ? $opt : false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment