wp get the id code example
Example 1: get_the_id wordpress
function get_the_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
$post = get_post();
return ! empty( $post ) ? $post->ID : false;
}
Example 2: wp query get ids
function carawebs_student_questionnaire_results(){
$args = array(
'post_type' => 'questionnaire-result',
'post_status' => 'publish',
'fields' => 'ids',
'meta_query' => array(
array(
'key' => 'user_type',
'value' => 'student',
'compare' => '=',
'type' => 'CHAR',
),
),
);
// The Query
$result_query = new WP_Query( $args );
$ID_array = $result_query->posts;
// Restore original Post Data
wp_reset_postdata();
return $ID_array;
}