Browse: Home / Hooks /

learndash_user_activity_query_limit

apply_filters( 'learndash_user_activity_query_limit',  string $sql_query_where,  array $query_args )

Filters the limit part of the user activity query.


Description #


Parameters #

$sql_query_where

(string) The limit part of the SQL query with valid SQL syntax.

$query_args

(array) An array of user query arguments.


Source #

File: includes/ld-reports.php


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for learndash_user_activity_query_limit filter.
 */
add_filter(
	'learndash_user_activity_query_limit',
	function( $sql_query_where, $query_args ) {
		// May add any custom logic using $sql_query_where, $query_args.

		// Always return $sql_query_where.
		return $sql_query_where;
	},
	10,
	2
);