Browse: Home / Hooks /

learndash_support_db_tables_rows

apply_filters( 'learndash_support_db_tables_rows',  boolean $show_table_rows )

Filters whether to show tables rows in admin support section.


Description #


Parameters #

$show_table_rows

(boolean) Whether to show table rows.


Source #

File: includes/class-ldlms-db.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_rows filter.
 */
add_filter(
	'learndash_support_db_tables_rows',
	function( $show_table_rows ) {
		// May add any custom logic using $show_table_rows.

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