Browse: Home / Hooks /

learndash_post_listing_before_option

This hook has been deprecated. Use ‘learndash_listing_selector_post_type_option_before’ instead.

apply_filters_deprecated( 'learndash_post_listing_before_option',  WP_Post $post,  array $query_arguments,  array $post_type )

Filters the post listing before displaying it to user.


Description #


Parameters #

$post

(WP_Post) WP_Post object to be displayed.

$query_arguments

(array) An array of selector query arguments.

$post_type

(array) The post type of the screen shown.


Source #

File: includes/admin/class-learndash-admin-posts-listing.php


Examples #

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

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

		// Add your custom code here
	}
);
 

Changelog #

Changelog
Version Description
3.2.3 Use 'learndash_listing_selector_post_type_option_before' instead.
3.0.0 Introduced. This hook has been deprecated. Use {@see 'learndash_listing_selector_post_type_option_before'} instead.