Skip to content

Instantly share code, notes, and snippets.

View awesomejs's full-sized avatar

Drew Witmer awesomejs

View GitHub Profile
@awesomejs
awesomejs / gist:2834426
Created May 30, 2012 07:52 — forked from scribu/gist:906872
'price' sortable column example
<?php
// Register the column
function price_column_register( $columns ) {
$columns['price'] = __( 'Price', 'my-plugin' );
return $columns;
}
add_filter( 'manage_edit-post_columns', 'price_column_register' );