Skip to content

Instantly share code, notes, and snippets.

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 michael-cannon/6333075 to your computer and use it in GitHub Desktop.
Save michael-cannon/6333075 to your computer and use it in GitHub Desktop.
Filter `custom_bulkquick_edit_settings_as_types`. Modify the field input types offered.
<?php
add_filter( 'custom_bulkquick_edit_settings_as_types', 'settings_as_types' );
public function settings_as_types( $as_types ) {
$as_types['date'] = esc_html__( 'As date' );
return $as_types;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment