Skip to content

Instantly share code, notes, and snippets.

@UserMetaPro
Created August 1, 2014 20:51
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 UserMetaPro/ad2f59f46d96a3ee498a to your computer and use it in GitHub Desktop.
Save UserMetaPro/ad2f59f46d96a3ee498a to your computer and use it in GitHub Desktop.
add_filter( 'user_meta_field_config', 'titleAsPlaceholder', 10, 3 );
function titleAsPlaceholder( $field, $fieldID, $formName ) {
if ( !empty( $field['field_title'] ) )
$field['placeholder'] = $field['field_title'];
return $field;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment