Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created June 29, 2017 21:04
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 billerickson/b1b62734ee880d061bc8ebfc34761770 to your computer and use it in GitHub Desktop.
Save billerickson/b1b62734ee880d061bc8ebfc34761770 to your computer and use it in GitHub Desktop.
<?php
/**
* WPForms, description above field
* @author Bill Erickson
* @see https://www.billerickson.net/code/wpforms-description-above-field
*
* @param array $properties, field properties
* @return array
*/
function ea_wpforms_description_above_field( $properties ) {
$properties['description']['position'] = 'before';
return $properties;
}
add_filter( 'wpforms_field_properties', 'ea_wpforms_description_above_field' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment