0
我正在使用高級自定義字段。我想鏈接流派自定義字段的值(例如驚悚片,懸念等),以便當用戶點擊其中一個值時,它們將獲得過濾的帖子列表。例如。當他們點擊驚悚片時,他們將獲得驚悚片類別中的所有帖子。高級自定義字段中的鏈接流派
到目前爲止我的代碼爲ACF如下:
<!-- Entry Content Start -->
<article <?php post_class('entry clearfix fitvids'); ?>>
<div class="inner-post">
<div class="cover">
<div class="post-image">
<?php
if (has_post_thumbnail()) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail();
}
?>
</div>
<div class="custom-fields">
<?php the_meta(); ?>
<div class="ad">
<img src="http://lorempixel.com/160/600" alt="">
</div>
</div>
</div>
<div class="the-content">
<?php the_content(); // This is your main post content output ?>
</div>
</div><!-- /inner-post -->
</article><!-- /entry -->
我希望有一個解決的辦法。 在此先感謝。
對不起,但我不明白這一點。我對PHP非常瞭解甚少:( – TBI
你可以試着按照這個[指南](http://www.advancedcustomfields.com/resources/how-to/filter-posts-by-custom-fields/)。 –
我會盡力..謝謝:) – TBI