LLMS_Query::__construct()
Constructor
Description Description
Return Return
(void)
Source Source
File: includes/class.llms.query.php
public function __construct() { add_action( 'init', array( $this, 'add_endpoints' ) ); if ( ! is_admin() ) { add_filter( 'query_vars', array( $this, 'set_query_vars' ), 0 ); add_action( 'parse_request', array( $this, 'parse_request' ), 0 ); } $this->init_query_vars(); add_action( 'pre_get_posts', array( $this, 'pre_get_posts' ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: