<?php
while ( $loop->have_posts() ) : $loop->the_post();
the_title();
echo \'<div class="entry-content">\';
the_content();
echo \'</div>\';
echo \'<div class="custom-field">\';
echo get_post_meta( get_the_ID(), \'name\', true );
echo get_post_meta( get_the_ID(), \'title\', true );
echo get_post_meta( get_the_ID(), \'bank\', true );
echo \'</div>\';
endwhile;
?>
这是显示内容下方自定义字段的方式。我没有测试它,但它应该可以工作。希望这有帮助。同时阅读米洛的答案和抄本,这样你就能理解它是如何工作的。
此外,看起来您正在使用自定义查询对象($loop
), 因此,请阅读本文:
http://codex.wordpress.org/The_Loop#Multiple_Loops_Example_1