Skip to content

Instantly share code, notes, and snippets.

@brandondove
Created February 21, 2017 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brandondove/19e7cabd26bfaff63b29f810fb7f2925 to your computer and use it in GitHub Desktop.
Save brandondove/19e7cabd26bfaff63b29f810fb7f2925 to your computer and use it in GitHub Desktop.
<?php
/**
* Adds a "thumbnail" column to the AdSanity post list in the WordPress Dashboard.
*/
function example_adsanity_ads_posts_columns( $columns = array() ) {
$columns['thumbnail'] = __( 'Thumbnail', 'example' );
return $columns;
}
add_filter( 'adsanity_ads_posts_columns', 'example_adsanity_ads_posts_columns' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment