do_action( 'um_ajax_load_posts__{$hook}', $args )
Fires on posts loading by AJAX in User Profile tabs.
Parameters:
| Name | Type | Description | 
|---|---|---|
$args | 
            
            array | Request.  | 
        
- Since:
 - 1.3.x
 
- Source:
 
Example
Make any custom action on when posts loading by AJAX in User Profile.
function my_ajax_load_posts( $args ) {
    // your code here
}
add_action( 'um_ajax_load_posts__{$hook}', 'my_ajax_load_posts', 10, 1 );