我为手机创建了一个wordpress主题,其中我使用了名为“品牌”的自定义字段。并添加三种品牌价值LG,诺基亚和索尼..
然后,如何为这三种类型的值创建三个单独的链接按钮,以显示相同品牌价值的所有其他帖子。
<a href="#"><?php echo get_post_meta( get_the_ID(), 'brand', true ); ?>
<?php _e( '', 'mobilewebsite' ); ?></a>
<li><a href="#">Nokia</a></li>
<li><a href="#">LG</a></li>
<li><a href="#">Sony</a></li>
答案 0 :(得分:1)
假设品牌自定义字段是帖子的元值,您可以使用此代码回显每个品牌字段。
<?php
// WP_Query arguments
$args = array (
'post_type' => array( 'post' ),
'post_status' => array( 'publish' ),
'meta_query' => array(
array(
'key' => 'brand',
),
),
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
?>
<a href="#">
<?php echo get_field('brand'); ?>
</a>
<?php
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();
?>
&#13;