apply_filters( 'learndash_support_sections_init', array $system_info )
Filters list of initial sections for admin settings support tab.
Description #
Parameters #
- $system_info
-
(array) An array of support sections.
Source #
File: includes/settings/settings-pages/class-ld-settings-page-support.php
Examples #
Note: Extended code example below not guaranteed, you may need to consult with a developer
<?php
/**
* Example usage for learndash_support_sections_init filter.
*/
add_filter(
'learndash_support_sections_init',
function( $systen_info ) {
// May add any custom logic using $systen_info.
// Always return $systen_info.
return $systen_info;
}
);