Created
July 6, 2012 17:49
-
-
Save alettieri/3061594 to your computer and use it in GitHub Desktop.
Sortable WordPress Columns
This file contains 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
// | |
// Make these columns sortable | |
// | |
function business_sortable_columns() { | |
return array( | |
'images' => 'images', | |
'title' => 'title', | |
"parking" => "parking" | |
); | |
} | |
add_filter( "manage_edit-business_sortable_columns", "business_sortable_columns" ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is great! Thanks a lot.