Browse: Home / Hooks /

learndash_focus_mode_comment_form_args

apply_filters( 'learndash_focus_mode_comment_form_args' )

Description #


Source #

File: src/views/themes/breezy/focus/comments.php


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;
	}
);