Skip to content

Instantly share code, notes, and snippets.

@eri-trabiccolo
Created May 4, 2015 17:19
Show Gist options
  • Save eri-trabiccolo/edbcd7d7909ff5fe2ef6 to your computer and use it in GitHub Desktop.
Save eri-trabiccolo/edbcd7d7909ff5fe2ef6 to your computer and use it in GitHub Desktop.
Thumbnails in single selected posts
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