标签: php wordpress loops
我知道在wordpress循环中
the_ID();
将输出帖子ID, 如果我想设置$ var =帖子ID; 我该怎么办?
答案 0 :(得分:1)
使用函数get_the_ID()代替响应其结果的the_ID(),它返回ID,你可以将它分配给你的php脚本中使用的变量。
$postid = get_the_ID(); /* do here what you need with $postid.. */
仅供参考,有一个很好的WP API官方存储库,CODEX