Skip to content

Instantly share code, notes, and snippets.

@engelen
Last active August 29, 2015 13:58
Show Gist options
  • Save engelen/10104566 to your computer and use it in GitHub Desktop.
Save engelen/10104566 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'cac/column/default_options', 'myplugin_cac_title_column_editable', 10, 2 );
function myplugin_cac_title_column_editable( $default_options, $column_instance ) {
if ( $column_instance->properties->type == 'title' && ! empty( $column_instance->properties->is_ed
) ) {
$default_options['edit'] = 'on';
}
return $default_options;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment