Skip to content

Instantly share code, notes, and snippets.

@zackkatz
Created December 11, 2023 19:49
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 zackkatz/75dc23389a1a42696f634812ac8ea7af to your computer and use it in GitHub Desktop.
Save zackkatz/75dc23389a1a42696f634812ac8ea7af to your computer and use it in GitHub Desktop.
GravityView - Always show the label by default
<?php
/**
* Always show the field label by default.
*
* @param array $field_options Default field options for each field in View Configuration screen.
*
* @return array
*/
add_filter( 'gravityview_template_field_options', function( $field_options ) {
$field_options['show_label'] = true;
return $field_options;
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment