我有一个Wordpress循环:
while ( $query->have_posts() ) : $query->the_post();
echo'<h3><a href="index.php?page_id=100">';the_title(); echo'</a></h3>';
echo'<h4>'.the_excerpt().'</h4>
如何将post id值分配给此循环中的变量?
$id = the_id();
不起作用。
答案 0 :(得分:4)
您想要get_the_ID()
。
所有以the_...
开头的函数打印值。以get_the_...
开头的函数返回值。