我是新手WordPress并编辑StoreFront Woo Commerce主题,我有代码但不知道放在哪里,每个人都给出答案而不提及更改文件的位置,请帮忙!
<ul class="products">
<?php
$args = array(
'post_type' => 'product',
'posts_per_page' => 12,
'tax_query' => array(
array(
'taxonomy' => 'product_visibility',
'field' => 'name',
'terms' => 'featured',
),
),
);
$loop = new WP_Query( $args );
if ( $loop->have_posts() ) {
while ( $loop->have_posts() ) : $loop->the_post();
wc_get_template_part( 'content', 'product' );
endwhile;
} else {
echo __( 'No products found' );
}
wp_reset_postdata();
?>
答案 0 :(得分:0)
改变WordPress和插件功能的代码通常会放入主题的 functions.php 文件中。 <ul class="products">
是直接HTML,不应放在该文件中,除非它被处理为某种回声或打印输出。
由于大多数主题在某些时候都会得到更新,因此您应该使用child theme进行修改。