根据与产品名称匹配的帖子类别显示表彰

时间:2020-10-19 作者:Marney Fontana

我有一个模板部分,显示推荐信。推荐信已设置为一种帖子类型,并将根据产品名称进行分类。以下是推荐部分:

<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;
 ?>

1 个回复
SO网友:cameronjonesweb

你有一个额外的右括号

if (is_testimonial_category()) == $ptitle ) :

应该是

if ( is_testimonial_category() == $ptitle ) :

相关推荐

如何按照与菜单相同的顺序对Get_Categories()进行排序?

我使用了一个主题,我注意到它在菜单中动态显示了一系列类别:我需要相同的类别列表,但页脚的HTML标记不同。目前,这是我在页脚中的内容:页脚。php:<?php $categories = get_categories(); foreach($categories as $category) { echo \'<a href=\"\' . get_category_link($category->term_id) . \'\"