📅  最后修改于: 2023-12-03 15:21:15.143000             🧑  作者: Mango
在 WordPress 中,存档页面是展示文章以及其他内容的一种方式。产品类别存档页面则是展示产品类别的页面。本文将介绍如何编辑存档-产品类别页面的方法,使用 PHP 代码实现。
archive-product.php
文件。taxonomy-product_cat.php
,这个命名规则是 WordPress 的默认命名规则。get_header()
函数获取网站的头部文件(通常是 header.php
)。<?php get_header(); ?>
if
语句检查当前的产品类别存档页面是否为空,如果是空的则显示一个错误信息。<?php if ( ! have_posts() ) : ?>
<div class="alert alert-warning">
<?php _e( 'Sorry, no products were found in this category.', 'textdomain' ); ?>
</div>
<?php endif; ?>
get_template_part()
函数获取产品类别循环列表的代码(通常是 loop-taxonomy-product_cat.php
)。<?php get_template_part( 'loop', 'taxonomy-product_cat' ); ?>
get_sidebar()
函数获取网站的侧边栏文件(通常是 sidebar.php
)。<?php get_sidebar(); ?>
get_footer()
函数获取网站的底部文件(通常是 footer.php
)。<?php get_footer(); ?>
<?php get_header(); ?>
<?php if ( ! have_posts() ) : ?>
<div class="alert alert-warning">
<?php _e( 'Sorry, no products were found in this category.', 'textdomain' ); ?>
</div>
<?php endif; ?>
<?php get_template_part( 'loop', 'taxonomy-product_cat' ); ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
以上是编辑存档-产品类别页面的方法。在编辑存档页面时,您也可以通过覆盖默认的存档模板来自定义存档页面的样式和布局。