Skip to content

Instantly share code, notes, and snippets.

@caratage
Created November 23, 2012 19:31
Show Gist options
  • Save caratage/4136971 to your computer and use it in GitHub Desktop.
Save caratage/4136971 to your computer and use it in GitHub Desktop.
Edit custom post columns
add_filter("manage_edit-artist_columns", "artist_edit_columns");
function artist_edit_columns($columns) {
$columns = array(
'cb' => '<input type="checkbox"/>',
'thumbnail' => __('Image'),
'title' => __('Artist'),
'performance' => __('Type'),
'slides_home' => __('on Homepage'),
);
return $columns;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment