Skip to content

Instantly share code, notes, and snippets.

@brandondove
Created February 21, 2017 22:55
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/a02c15897cb6fff31dc661da7560068d to your computer and use it in GitHub Desktop.
Save brandondove/a02c15897cb6fff31dc661da7560068d to your computer and use it in GitHub Desktop.
<?php
/**
* Indicates that the "clicks" column is sortable for the AdSanity post list in the WordPress Dashboard.
*/
function example_adsanity_ads_sortable_posts_columns( $sortable_columns = array() ) {
$sortable_columns['clicks'] = 'clicks';
return $sortable_columns;
}
add_filter( 'adsanity_ads_sortable_posts_columns', 'example_adsanity_ads_sortable_posts_columns' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment