Created
October 21, 2013 01:20
-
-
Save amdrew/7077390 to your computer and use it in GitHub Desktop.
Add support for genesis cpt archive settings to Easy Digital Download's download post type
http://www.carriedils.com/genesis-2-0-archive-settings-custom-post-types/
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
<?php | |
function my_child_theme_edd_download_supports( $supports ) { | |
$supports[] = 'genesis-cpt-archives-settings'; | |
return $supports; | |
} | |
add_filter( 'edd_download_supports', 'my_child_theme_edd_download_supports' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment