get_the_ID函数是WordPress中的一个内置函数,用于获取当前文章或页面的ID。它可以在任何模板文件中使用。
使用语法:
get_the_ID();
参数:
该函数不接受任何参数。
返回值:
一个整数,表示当前文章或页面的ID。
使用示例:
1. 在循环中获取当前文章的ID:
while (have_posts()) : the_post();
$post_id = get_the_ID();
// do something with the ID
endwhile;
2. 获取当前页面的ID:
$page_id = get_the_ID();
3. 根据文章ID获取文章标题:
$post_id = 123; // 文章ID
$post_title = get_the_title($post_id);
注意事项:
- get_the_ID函数必须在循环之内使用,否则将无法获取到正确的ID。
- 如果要在循环之外获取当前文章或页面的ID,可以使用函数get_queried_object_id()。
0 个评论