php [WooCommerce插件开发人员手册]记录可用于调试目的的WooCommerce数据。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php [WooCommerce插件开发人员手册]记录可用于调试目的的WooCommerce数据。相关的知识,希望对你有一定的参考价值。

$label = __( 'Enable Logging', 'your-textdomain-here' );
$description = __( 'Enable the logging of errors.', 'your-textdomain-here' );

if ( defined( 'WC_LOG_DIR' ) ) {
	$log_url = add_query_arg( 'tab', 'logs', add_query_arg( 'page', 'wc-status', admin_url( 'admin.php' ) ) );
	$log_key = 'your-plugin-slug-here-' . sanitize_file_name( wp_hash( 'your-plugin-slug-here' ) ) . '-log';
	$log_url = add_query_arg( 'log_file', $log_key, $log_url );

	$label .= ' | ' . sprintf( __( '%1$sView Log%2$s', 'your-textdomain-here' ), '<a href="' . esc_url( $log_url ) . '">', '</a>' );
}

$form_fields['wc_yourpluginslug_debug'] = array(
	'title'       => __( 'Debug Log', 'your-textdomain-here' ),
	'label'       => $label,
	'description' => $description,
	'type'        => 'checkbox',
	'default'     => 'no'
);

以上是关于php [WooCommerce插件开发人员手册]记录可用于调试目的的WooCommerce数据。的主要内容,如果未能解决你的问题,请参考以下文章

如何开发一个woocommerce插件

WooCommerce 插件模板覆盖

如何将自定义挂钩添加到 Woocommerce 的自定义插件

php WooCommerce社交登录插件前端类兼容NextMove感谢WooCommerce页面

php 为Betheme改变WooCommerce单一产品页面位置,用于XL WooCommerce销售触发插件

WooCommerce 插件 PHP 挂钩上的空 $order 变量