我有一个模板部分,显示推荐信。推荐信已设置为一种帖子类型,并将根据产品名称进行分类。以下是推荐部分:
<div class="testimonials-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-8 col-md-12 col-sm-12 this-column">
<div class="autoplay testimonials-container">
<?php
$args = array( \'post_type\' => \'testimonials\', \'posts_per_page\' => 999 );
$loop = new WP_Query( $args );
if ( $loop->have_posts() ) :
while ( $loop->have_posts() ) : $loop->the_post();
echo \'<div class="entry-content">\';
the_content();
echo \'<h3>\';
the_field(\'job_title\');
echo \' / \';
the_title();
echo \'</h3></div>\';
endwhile;
else :
echo wpautop( \'Currently no Testimonials.\' );
endif;
wp_reset_query();
?>
</div>
</div>
</div>
</div>
</div>
我想做的是在我的单个产品上展示推荐信。php页面,如果产品名称与推荐类别匹配。
这就是我要说的,但我犯了一个严重的错误。请原谅我的无知,我是初学者。
<?php
$ptitle = $product->get_name();
if (is_testimonial_category()) == $ptitle ) :
echo \'YES, this is where I would add in the above code....\';
endif;
?>