get_the_id

函数
get_the_id ( No parameters )
返回值
  • (int|false) The ID of the current item in the WordPress Loop. False if $post is not set.
定义位置
相关方法
get_the_guidget_the_dateget_the_timeget_cat_idget_the_title
引入
2.1.0
弃用
-

get_the_id: 这个函数检索当前文章或页面的ID。它不接受任何参数,以整数形式返回ID。

检索WordPress循环中的当前项目的ID。

function get_the_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	$post = get_post();
	return ! empty( $post ) ? $post->ID : false;
}

常见问题

FAQs
查看更多 >