apply_filters( 'learndash_settings_row_outside_after', string $output_content, array $field_arguments )
Filters the HTML content to be echoed after outside row settings.
Description #
Parameters #
- $output_content
-
(string) Content to be echoed.
- $field_arguments
-
(array) An array of setting field arguments.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_settings_row_outside_after filter.
*/
add_filter(
'learndash_settings_row_outside_after',
function( $output_content, $field_arguments ) {
// May add any custom logic using $output_content, $field_arguments.
// Always return $output_content.
return $output_content;
},
10,
2
);