Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 27, 2022 09:53
Show Gist options
  • Save hivepress/d511e90bb7f45b9cb227ff5ee405cdff to your computer and use it in GitHub Desktop.
Save hivepress/d511e90bb7f45b9cb227ff5ee405cdff to your computer and use it in GitHub Desktop.

Revisions

  1. hivepress created this gist Apr 27, 2022.
    10 changes: 10 additions & 0 deletions functions.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    <?php
    add_filter(
    'hivepress/v1/forms/payout_request',
    function( $form ) {
    $form['fields']['details']['description'] = 'custom text here';

    return $form;
    },
    1000
    );