Browse: Home / Hooks /

learndash_profile_ajax_pagination_atts

apply_filters( 'learndash_profile_ajax_pagination_atts',  array $shortcode_instance )

Filters ajax profile search attributes


Description #


Parameters #

$shortcode_instance

(array) Shortcode instance


Source #

File: themes/ld30/includes/helpers.php


Examples #

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

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

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

Changelog #

Changelog
Version Description
3.0.0 Introduced.