apply_filters( 'learndash-profile-essay-column', array $essay_columns )
Filters list of profile essay columns.
Description #
Parameters #
- $essay_columns
-
(array) An Associative array of essay columns with slug as key and content as value.
Source #
File: themes/ld30/templates/shortcodes/profile/essay-row.php
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash-profile-essay-column filter.
*/
add_filter(
'learndash-profile-essay-column',
function( $essay_columns ) {
// May add any custom logic using $essay_columns.
// Always return $essay_columns.
return $essay_columns;
}
);
Changelog #
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |