0

我通过以下代码在页面中获得了帖子缩略图和帖子内容

                <?php
            $post_types = array('a', 'b','p','d','f');//post type names
            foreach( $post_types as $post_type) {
            // The Query
            $the_query = new WP_Query( array(
             'post_type' => $post_type,
             'orderby' => 'post_date',
             'order' => 'DESC'
            ));

            while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
                  <?php if ( has_post_thumbnail() ) { 
                        the_post_thumbnail();
                    }
                  ?>

            <?php endwhile; ?>
            <?php }?>

现在我想从相应的帖子中获取自定义字段值。

4

2 回答 2

1

使用get_post_meta($post_id, $key, $single)检索单个键值或键/值对的整个列表(作为数组)。

此函数始终返回一个数组(即使$key已指定且该数组仅包含一个值),除非$single参数为true.

<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
    <?php if ( has_post_thumbnail() ): ?>
        <?php the_post_thumbnail(); ?>
        <?php $my_key = get_post_meta($post->id, 'my_key', true); ?>
        <?php if(!empty($my_key)): ?>
            <?php echo $my_key; ?>
        <?php endif; ?>
    <?php endif; ?>
<?php endwhile; ?>
于 2012-11-23T11:39:20.573 回答
1

使用这个(在你的while循环内):

echo get_post_meta(get_the_ID(), 'post_img', true); 
于 2012-11-23T12:37:25.647 回答