Browse: Home / Hooks /

learndash_pagination_before_wrapper

do_action( 'learndash_pagination_before_wrapper' )

Fires before the pagination wrapper.


Description #


Source #

File: themes/ld30/templates/modules/pagination.php


Examples #

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

 <?php
/**
 * Example usage for learndash_pagination_before_wrapper action.
 */
add_action(
	'learndash_pagination_before_wrapper',
	function() {

		// Add your custom code here
	}
);
 

Changelog #

Changelog
Version Description
3.0.0 Introduced.