Created
May 10, 2020 06:07
-
-
Save mehul0810/ade87cee49aa3df7668744decf3d9cdc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function mg_update_remark( $remark, $formId ) { | |
// Do whatever you like to update the remark text. | |
$remark = 'This is my remark'; // This is just an example how to update remark text. | |
return $remark; | |
} | |
add_filter( 'mggi88_update_remark_text', 'mg_update_remark', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment