wp-pay-extensions/easy-digital-downloads

WordPress支付处理库的Easy Digital Downloads驱动程序。

v4.3.5 2024-03-26 11:21 UTC

README

WordPress支付处理库的Easy Digital Downloads驱动程序。

测试Easy Digital Downloads费用

据我们所知,没有免费的/开源的Easy Digital Downloads费用插件。以下必须使用的WordPress插件可以测试Easy Digital Downloads费用系统。

wp-content/mu-plugins/edd-test-fee.php

<?php

add_action( 'init', function() {
	if ( ! function_exists( 'EDD' ) ) {
		return;
	}

	EDD()->fees->add_fee( 10, 'Test Backwards Compatibility', 'test-compat' );

	EDD()->fees->add_fee( array(
		'amount' => 20,
		'label'  => 'Test',
		'id'     => 'test',
		'no_tax' => false,
		'type'   => 'item',
	) );

	EDD()->fees->add_fee( array(
		'amount' => -5.95,
		'label'  => 'Discount',
		'id'     => 'discount',
		'type'   => 'fee',
	) );

	EDD()->fees->add_fee( array(
		'amount'      => 30.75,
		'label'       => 'Arbitrary Item',
		'download_id' => 8,
		'id'          => 'arbitrary_fee',
		'type'        => 'item',
	) );
} );

链接