php 高级自定义字段 - 有条件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 高级自定义字段 - 有条件相关的知识,希望对你有一定的参考价值。
<?php
$args = array(
'posts_per_page' => 1,
'post_type' => 'whitepaper',
'tax_query' => array(
array(
'taxonomy' => 'whitepaper_tag',
'field' => 'term_id',
'terms' => get_field('whitepaper'),
)
)
);
query_posts( $args );
while ( have_posts() ) : the_post();
?>
<!-- HTML here -->
<?php endwhile; ?>
<?php wp_reset_query(); ?>
以上是关于php 高级自定义字段 - 有条件的主要内容,如果未能解决你的问题,请参考以下文章
php 高级自定义字段 - 转发器字段
PHP是否干扰了高级自定义字段?
高级自定义字段/PHP 问题
php 高级自定义字段
php 高级自定义字段捆绑和设置
php 模板 - 高级自定义字段