本文整理汇总了PHP中WC_Admin_Notices::init方法的典型用法代码示例。如果您正苦于以下问题:PHP WC_Admin_Notices::init方法的具体用法?PHP WC_Admin_Notices::init怎么用?PHP WC_Admin_Notices::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WC_Admin_Notices
的用法示例。
在下文中一共展示了WC_Admin_Notices::init方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: no_shipping_methods_notice
public static function no_shipping_methods_notice()
{
if (wc_shipping_enabled() && (empty($_GET['page']) || empty($_GET['tab']) || 'wc-settings' !== $_GET['page'] || 'shipping' !== $_GET['tab'])) {
global $wpdb;
$product_count = wp_count_posts('product');
$method_count = wc_get_shipping_method_count();
if ($product_count->publish > 0 && 0 === $method_count) {
include 'views/html-notice-no-shipping-methods.php';
}
if ($method_count > 0) {
self::remove_notice('no_shipping_methods');
}
}
}
/**
* Simplify Commerce is being removed from core.
*/
public static function simplify_commerce_notice()
{
$location = wc_get_base_location();
if (class_exists('WC_Gateway_Simplify_Commerce_Loader') || !in_array($location['country'], apply_filters('woocommerce_gateway_simplify_commerce_supported_countries', array('US', 'IE')))) {
self::remove_notice('simplify_commerce');
return;
}
if (empty($_GET['action'])) {
include 'views/html-notice-simplify-commerce.php';
}
}
}
WC_Admin_Notices::init();