从单页

时间:2017-03-07 11:12:43

标签: php wordpress

您好我是WordPress开发的新手。我创建了一个自定义的帖子类型" projects",其中显示了项目列表。我想按一个按钮"返回项目"在其单页(single-project.php)中,它将重定向回其列表页面。我怎样才能做到这一点?看一下代码中的最后一行。请帮忙。

 if ($query->have_posts() ):
        while ($query->have_posts() ):
            $query->the_post();
                                    ?>

                                    <div class="related-project-single">
                                        <?php the_post_thumbnail('image_size_720_680'); ?>
                                        <div class="wrapper-button">
                                            <a class="bp-button bp-button-plain button-yellow btn-slider" href="<?php the_permalink(); ?>"><?php echo esc_html__('view project','inspiry') ?> <i class="fa fa-chevron-right"></i></a>
                                        </div>
                                        <div class="wrapper-location">
                                            <h3><?php the_title(); ?></h3>
                                            <?php
                                            $feature_location_related = get_post_meta(get_the_ID(),'bp-location',true);
                                            if(!empty($feature_location_related)){
                                                ?>
                                                <p class="featured-location"><?php echo esc_html($feature_location_related);?></p>
                                                <?php
                                            }
                                            ?>
                                        </div>
                                    </div>
                                    <?php
                                endwhile;endif;?>
                            <a href="">Back to projects</a>

2 个答案:

答案 0 :(得分:0)

你试过这个链接吗?

<a href="index.php?post_type=projects">Back to projects</a>

答案 1 :(得分:0)

试试这个,它应该可行

  <a href="<?php echo get_post_type_archive_link('projects'); ?>">Back to projects</a>