要從店面主題主頁刪除產(chǎn)品類別部分,您可以使用以下簡單的程式碼片段:
add_action( 'init', 'remove_storefront_home_product_categories', 10 ); function remove_storefront_home_product_categories(){ // Unhook storefront_product_categories() function from 'homepage' action hook remove_action( 'homepage', 'storefront_product_categories', 20 ); }
程式碼位於活動子主題(或活動主題)的functions.php 檔案中。經(jīng)過測試並有效。