WP_Comment_Query::parse_query( string|array $query = '' )

Parse arguments passed to the comment query with default query parameters.


Description Description


Parameters Parameters

$query

(string|array) (Optional) WP_Comment_Query arguments. See WP_Comment_Query::__construct()

Default value: ''


Top ↑

Source Source

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

	public function parse_query( $query = '' ) {
		if ( empty( $query ) ) {
			$query = $this->query_vars;
		}

		$this->query_vars = wp_parse_args( $query, $this->query_var_defaults );

		/**
		 * Fires after the comment query vars have been parsed.
		 *
		 * @since 4.2.0
		 *
		 * @param WP_Comment_Query $this The WP_Comment_Query instance (passed by reference).
		 */
		do_action_ref_array( 'parse_comment_query', array( &$this ) );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.2.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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