作为标题,我要求帮助以了解使用WooCommerce插件构建自定义主题的逻辑。
我写了我遵循的解释正确逻辑的过程。
转到functions.php
并实现以下代码:
add_action('after_setup_theme', 'attivazione_eccomerce');
function attivazione_eccomerce(){
add_theme_support('woocommerce');
add_theme_support('title-tag');
add_theme_support('post-thumbnails');
add_theme_support('custom-header');
}
在我的主题文件夹中创建一个woocommerce.php
文件
在我的主题文件夹中创建一个woocommerce
子文件夹
将插件的父目录中的archive-product.php
文件复制到主题内的woocommerce
子文件夹中
将archive-product.php
文件的内容复制到我的woocommerce.php
页面
创建一个header-shop.php
和一个footer.php
将我连接到默认钩子。
现在从woocommerce.php
中archive-product.php
中的文件开始,如何创建和编辑单个产品页面?