wp1099_royalty_min_payout

The wp1099_royalty_min_payout filter lets you change the value that is used for the minimum payout amount for royalty payments.

The filter accepts one parameter.

Parameters:

  • $amount - default value is 10 as the IRS minimum payout amount is $10 to generate a 1099-MISC

Usage:

This filter can be used in the following manner:

// Change the minimum payout amount to $5 from $10
add_filter( 'wp1099_royalty_min_payout', 'my_custom_royalty_amount' );
function my_custom_royalty_amount( $amount ){
	return '5';
}