我制作了一个自定义php插件,该插件获取邮政编码并计算特定产品的交货时间。在产品页面中调用插件的正确方法是什么?
if ( !function_exists( 'add_action' ) ) {
echo 'Hi there! I\'m just a plugin, not much I can do when called directly.';
exit;
}
if( is_admin() )
{
//stuff
}
else
{
if ( in_array( 'woocommerce/woocommerce.php', apply_filters('active_plugins',
get_option('active_plugins' ) ) ) )
{
require_once( CUSTOMPOSTCODE__PLUGIN_DIR . 'classes/ajax.php' );
if ( !class_exists( 'WooCommerce' ) )
{
add_action( 'woocommerce_after_add_to_cart_button',
array( 'custompostcode', 'productPage' ) );
}
}
}
我想在“添加到购物车”按钮之前添加此字段,但是我不确定这样做的正确方法。