apply_filters( 'learndash_focus_mode_comment_form_args' )
Contents
Description #
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_focus_mode_comment_form_args filter.
*/
add_filter(
'learndash_focus_mode_comment_form_args',
function( $comment_arguments ) {
// May add any custom logic using $comment_arguments.
// Always return $comment_arguments.
return $comment_arguments;
}
);