apply_filters( 'learndash_mark_complete_form_atts', array $attributes, WP_Post $post )
Filters attributes for mark a course complete form.
Description #
Parameters #
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_mark_complete_form_atts filter.
*/
add_filter(
'learndash_mark_complete_form_atts',
function( $attributes, $post ) {
// May add any custom logic using $attributes, $post.
// Always return $attributes.
return $attributes;
},
10,
2
);
Changelog #
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |