第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

在 woocommerce 管理列表狀態(tài)和用戶方面顯示順序

在 woocommerce 管理列表狀態(tài)和用戶方面顯示順序

PHP
慕的地6264312 2023-10-15 14:39:17
在 woocommerce 管理端的訂單列表中,我想按狀態(tài)顯示訂單。我的意思是說,如果訂單處于處理狀態(tài),則該訂單應(yīng)顯示在管理訂單列表中,而其他訂單不應(yīng)顯示在該列表中。檢查圖像以了解我需要的更多詳細(xì)信息..在此處輸入圖像描述
查看完整描述

1 回答

?
翻過高山走不出你

TA貢獻(xiàn)1875條經(jīng)驗 獲得超3個贊

我猜你正在尋找這樣的東西?


/**

?* Limit statuses dropdown for custom user role.

?*

?* @param array $statuses

?* @see wc_get_order_statuses()

?*/

add_filter( 'wc_order_statuses', function( $statuses ) {

? ? # Custom user role (registered elsewhere).

? ? $custom_user_role = 'administrator';

? ??

? ? # Status(es) of orders to show to custom user role.

? ? $limit_to_order_statuses = array(

? ? ? ? 'wc-processing' => 1,

? ? ? ? 'wc-on-hold' => 1,

? ? );

? ??

? ? # Make sure we're editing right query.

? ? # If not, then nothing to change ("return early").

? ? if (

? ? ? ? !function_exists( 'get_current_screen' )

? ? ? ? ||? 'shop_order' !== get_current_screen()->post_type

? ? ? ? || 'woocommerce' !== get_current_screen()->parent_base

? ? )

? ? ? ? return $statuses;

? ??

? ? # Check if user has the specified custom user role.

? ? # If they don't, then nothing to change ("return early").

? ? if ( !in_array( $custom_user_role, wp_get_current_user()->roles ) )

? ? ? ? return $statuses;

? ??

? ? return array_intersect_key( $statuses, $limit_to_order_statuses );

} );


查看完整回答
反對 回復(fù) 2023-10-15
  • 1 回答
  • 0 關(guān)注
  • 120 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號