我已经完成了数小时的谷歌搜索,但仍然难以从哪里开始。
我试图在某个类别中显示帖子网格,同时还在该帖子中抓取并显示自定义字段。
我只需要一个起点,然后我就可以弄清楚如何实现它然后设计它。
非常感谢任何帮助!
答案 0 :(得分:0)
我想你可以试试这段代码:
$args = array(
'post_type' => 'medlem',
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'term_id',
'terms' => 4
)
)
);
As' field' => ' term_id'默认情况下,您可以跳过此行。有关更多信息,请访问:http://codex.wordpress.org/Class_Reference/WP_Query
答案 1 :(得分:0)
您可以在数组中使用类别ID显示网格中的帖子列表,其中包含以下查询:
<?php global $post;
$args = array( 'posts_per_page' => -1, 'offset'=> 1, 'category' => array(1,2,4) );
foreach ( $myposts as $post ) : setup_postdata( $post );
$custom_field = get_post_meta($post->ID, 'your_key', true); // TO get custom field value of post.. ?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endforeach;
wp_reset_postdata(); ?>
您还可以使用get_post_meta
函数获取自定义字段值,其中包含上述代码所示的帖子ID。
希望这对你有所帮助。感谢。