get_queried_object_id(): int

Retrieves the ID of the currently queried object.


Description

Wrapper for WP_Query::get_queried_object_id().


Top ↑

Return

int ID of the queried object.


Top ↑

Source

File: wp-includes/query.php. View all references

function get_queried_object_id() {
	global $wp_query;
	return $wp_query->get_queried_object_id();
}


Top ↑

Changelog

Changelog
Version Description
3.1.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.