在FrontPage上显示帖子中的自定义字段值

时间:2011-03-16 作者:Mike

如何为所有帖子提取一个带有meta\\u键“property\\u feature”(并且有一个值)的自定义字段,并将其显示在我的frontpage上?要将帖子名称显示为值上方的链接。。

1 个回复
SO网友:Wyck

在主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: ?>

结束

相关推荐

获取在Functions.php中设置的变量,并在我的Custom Post模板中回显它们

在我的函数中设置了以下函数。php文件,以允许我的自定义帖子类型“Slideshow”工作。add_action( \'the_post\', \'paginate_slide\' ); function paginate_slide( $post ) { global $pages, $multipage, $numpages; if( is_single() && get_post_type() == \'lom_s