📜  get_the_id wordpress - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:12.236000             🧑  作者: Mango

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