get_the_ID()
只能在循环中使用。
这将检索ID
循环处理的当前post的。
如果只需要一次,您可以自己使用:
$dish_meta = get_post_meta( get_the_ID(), \'dish_meta\', true );
如果多次需要,也可以将其存储为变量:
$post_id = get_the_ID();
$dish_meta = get_post_meta( $post_id, \'dish_meta\', true );
$drink_meta = get_post_meta( $post_id, \'drink_meta\', true );
print_r( $post_id );
//etc
参考:
get_the_ID()