Created
June 23, 2015 17:34
-
-
Save SeanChDavis/6222547a69295b9b0dfc to your computer and use it in GitHub Desktop.
Vendd filter - author links in single download sidebar
This file contains 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
// 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