get_the_ID()
構文
get_the_ID()
get_the_ID()の詳細
動 作
ループの中でのみ使用できる。
現在の投稿のIDを取得する。
WordPressループ内の現在のアイテムのIDを取得する。
返り値
(int)現在の投稿ID
引 数
引数:なし
get_the_ID()のコード
参照:source:tags/5.3/src/wp-includes/post-template.php
<?php /** * Retrieve the ID of the current item in the WordPress Loop. * * @since 2.1.0 * * @return int|false The ID of the current item in the WordPress Loop. False if $post is not set. */ function get_the_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid $post = get_post(); return ! empty( $post ) ? $post->ID : false; } ?>