apply_filters( 'learndash-essay-column-headings', array $column_headings )
Filters essay column heading details.
Description #
Parameters #
- $column_headings
-
(array) An array of essay column heading details array. Heading details array can have keys for id and label.
Source #
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash-essay-column-headings filter.
*/
add_filter(
'learndash-essay-column-headings',
function( $column_headings ) {
// May add any custom logic using $column_headings.
// Always return $column_headings.
return $column_headings;
}
);
Changelog #
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |