Skip to content

Instantly share code, notes, and snippets.

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