Warning: This method has been deprecated. Use LLMS_Query::set_query_vars() instead.

LLMS_Query::add_query_vars( array $vars )

Add query variables


Description Description


Parameters Parameters

$vars

(array) (Required) WP query variables available for query.


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/class.llms.query.php

	public function add_query_vars( $vars ) {

		llms_deprecated_function( 'LLMS_Query::add_query_vars()', '3.31.0', 'LLMS_Query::set_query_vars()' );
		return $this->set_query_vars( $vars );

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.31.0 Use LLMS_Query::set_query_vars() instead.
1.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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





Permalink: