如果我打电话get_the_ID()
在我的整个文件中多次指定get_the_ID()
到变量?
<小时>
// Call get_the_ID() directly
function_that_needs_post_ID( get_the_ID() );
another_function_that_needs_post_ID( get_the_ID() );
VS
// Assign get_post_ID() to variable
$post_id = get_the_ID();
function_that_needs_post_ID( $post_id );
another_function_that_needs_post_ID( $post_id);