Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created June 23, 2015 17:30
Show Gist options
  • Save SeanChDavis/fb100b44e43fa6938301 to your computer and use it in GitHub Desktop.
Save SeanChDavis/fb100b44e43fa6938301 to your computer and use it in GitHub Desktop.
Vendd filter - author avatar in single download sidebar
// global
add_filter( 'vendd_show_single_download_author_avatar', '__return_false' );
// download-specific
function example_vendd_show_single_download_author_avatar( $show_author_avatar, $post ) {
if ( $post->ID == 123 ) {
$show_author_avatar = false;
}
return $show_author_avatar;
}
add_filter( 'vendd_show_single_download_author_avatar', 'example_vendd_show_single_download_author_avatar', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment