如何在索引循环上显示自定义字段值?

时间:2018-04-29 09:44:17

标签: wordpress custom-post-type custom-fields rating

我想在单个帖子类型和我希望在索引页面上显示的相同评级值上显示评级,其中所有帖子类型都列出。在索引页面上: enter image description here

请检查single post上的评级(位于底部)。另外,请看这里: enter image description here

以下是自定义字段的代码:

  <?php
    //grab the rating value
     $rating = get_post_meta($post->ID, 'rating', true);

//prints star image
for ($i=1; $i<=$rating; $i++){
    echo '<i class="fa fa-star"></i>';
}

//prints unstar image
for ($i=$rating; $i<5; $i++){
    echo '<i class="fa fa-star-o"></i>';
}
?>

请,建议。

0 个答案:

没有答案