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