是否可以在单独的独立PHP文件中利用WooCommerece API?例如,我想运行一个PHP脚本来记录当天的所有销售情况。该文件将驻留在WooCommerence文件夹中,但与WordPress或WooCommerence安装没有任何关联:
e.g。 salesTally.php
<?php
//How to include?
global $woocommerce, $post;
$order = new WC_Order($post->ID);
//Do Stuff To Order
?>
答案 0 :(得分:0)
感谢银。
可能的解决方案:
include_once('wp-load.php');
global $woocommerce;
//Search for complete wc_bookings, return a maximum of 200
$orders = get_posts( array(
'post_type' => 'wc_booking',
'post_status' => 'complete',
'posts_per_page' => 200
) );
print_r($orders);