WP_Query::get_queried_object_id()

Retrieve ID of the current queried object.


Description


Return

(int)


Top ↑

Source

File: wp-includes/class-wp-query.php

	public function get_queried_object_id() {
		$this->get_queried_object();

		if ( isset( $this->queried_object_id ) ) {
			return $this->queried_object_id;
		}

		return 0;
	}

Top ↑

Changelog

Version Description
1.5.0 Introduced.