Browse: Home / Hooks /

learndash_support_sections

apply_filters( 'learndash_support_sections',  array $system_info )

Filters list of 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 filter.
 */
add_filter(
	'learndash_support_sections',
	function( $systen_info ) {
		// May add any custom logic using $systen_info.

		// Always return $systen_info.
		return $systen_info;
	}
);