Created
November 25, 2013 14:49
-
-
Save JiveDig/7642338 to your computer and use it in GitHub Desktop.
Remove the shortcode column from Downloads dashboard
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 | |
| // Remove the shortcode column from Downloads dashboard | |
| add_filter( 'edd_download_columns', 'child_remove_edd_shortcode_column' ); | |
| function child_remove_edd_shortcode_column( $download_columns ) { | |
| unset( $download_columns['shortcode'] ); | |
| return $download_columns; | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment