在主post循环中,您可以添加如下内容:,
get_post_meta($post->ID, \'property_feature\', true);
包含标题和自定义字段的主循环的基本示例(取决于主题)。
//start the loop
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
//add post link and title
<a href="<?php the_permalink() ?>" rel="bookmark" title="Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
//add your custom meta value
<?php echo get_post_meta($post->ID, \'property_feature\', true) ?>
//close loop
<?php endwhile; else: ?>