Description
Filter the LIMIT statement for the item request SQL query.
Usage
apply_filters( 'wp_data_sync_item_request_sql_limit',  $limit_sql, $limit, $post_type );
Parameters
| $limit_sql | string | The SQL LIMIT statement | $limit | int | The number of items to query | $post_type | string | The post type name | 
Code Example
add_filter( 'wp_data_sync_item_request_sql_limit', function( $limit_sql, $limit, $post_type ) {
//Do cool stuff here!!
return $limit_sql;
), 10, 3 );
Contact us if you need a code example for this hook. We are happy to review your request.