Skip to content

Instantly share code, notes, and snippets.

@hivepress
Last active April 26, 2022 17:35
Show Gist options
  • Save hivepress/e53a530eb83f98cbd56f3a298261a44e to your computer and use it in GitHub Desktop.
Save hivepress/e53a530eb83f98cbd56f3a298261a44e to your computer and use it in GitHub Desktop.
Enable rich text (HTML) editor for the user profile description #hivepress #users
<?php
add_filter(
'hivepress/v1/models/user',
function( $model ) {
$model['fields']['description']['editor'] = true;
return $model;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment