📌  相关文章
📜  编辑 woocommerce 产品页面 childthemee - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:48.988000             🧑  作者: Mango

代码示例1
function mytheme_add_woocommerce_support() {
add_theme_support( 'woocommerce' );
}
add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );