ltg-lions-cardacat-16u-vs-wildcats-ca-holcomb-knight-16u-%f0%9f%93%85-11-21-2021-%e2%8f%b0-1230-pm-at-bat-02
ltg-lions-cardacat-16u-vs-wildcats-ca-holcomb-knight-16u-%f0%9f%93%85-11-21-2021-%e2%8f%b0-1230-pm-at-bat-02
ltg-lions-cardacat-16u-vs-wildcats-ca-holcomb-knight-16u-%f0%9f%93%85-11-21-2021-%e2%8f%b0-1230-pm-at-bat-02
ltg-lions-cardacat-16u-vs-wildcats-ca-holcomb-knight-16u-%f0%9f%93%85-11-21-2021-%e2%8f%b0-1230-pm-at-bat-02
/** * Constructor. * * @since 3.2.0 * @since 4.2.0 Introduced support for naming query clauses by associative array keys. * @since 5.1.0 Introduced `$compare_key` clause parameter, which enables LIKE key matches. * @since 5.3.0 Increased the number of operators available to `$compare_key`. Introduced `$type_key`, * which enables the `$key` to be cast to a new data type for comparisons. * * @param array $meta_query { * Array of meta query clauses. When first-order clauses or sub-clauses use strings as * their array keys, they may be referenced in the 'orderby' parameter of the parent query. * * @type string $relation Optional. The MySQL keyword used to join the clauses of the query. * Accepts 'AND' or 'OR'. Default 'AND'. * @type array ...$0 { * Optional. An array of first-order clause parameters, or another fully-formed meta query. * * @type string|string[] $key Meta key or keys to filter by. * @type string $compare_key MySQL operator used for comparing the $key. Accepts: * - '=' * - '!=' * - 'LIKE' * - 'NOT LIKE' * - 'IN' * - 'NOT IN' * - 'REGEXP' * - 'NOT REGEXP' * - 'RLIKE' * - 'EXISTS' (alias of '=') * - 'NOT EXISTS' (alias of '!=') * Default is 'IN' when `$key` is an array, '=' otherwise. * @type string $type_key MySQL data type that the meta_key column will be CAST to for * comparisons. Accepts 'BINARY' for case-sensitive regular expression * comparisons. Default is ''. * @type string|string[] $value Meta value or values to filter by. * @type string $compare MySQL operator used for comparing the $value. Accepts: * - '=' * - '!=' * - '>' * - '>=' * - '<' * - '<=' * - 'LIKE' * - 'NOT LIKE' * - 'IN' * - 'NOT IN' * - 'BETWEEN' * - 'NOT BETWEEN' * - 'REGEXP' * - 'NOT REGEXP' * - 'RLIKE' * - 'EXISTS' * - 'NOT EXISTS' * Default is 'IN' when `$value` is an array, '=' otherwise. * @type string $type MySQL data type that the meta_value column will be CAST to for * comparisons. Accepts: * - 'NUMERIC' * - 'BINARY' * - 'CHAR' * - 'DATE' * - 'DATETIME' * - 'DECIMAL' * - 'SIGNED' * - 'TIME' * - 'UNSIGNED' * Default is 'CHAR'. * } * } */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:168
/** * Ensures the 'meta_query' argument passed to the class constructor is well-formed. * * Eliminates empty items and ensures that a 'relation' is set. * * @since 4.1.0 * * @param array $queries Array of query clauses. * @return array Sanitized array of query clauses. */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:192
/** * Constructs a meta query based on 'meta_*' query vars * * @since 3.2.0 * * @param array $qv The query variables. */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:271
/** * Returns the appropriate alias for the given meta type if applicable. * * @since 3.7.0 * * @param string $type MySQL type to cast meta_value. * @return string MySQL type. */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:319
/** * Generates SQL clauses to be appended to a main query. * * @since 3.2.0 * * @param string $type Type of meta. Possible values include but are not limited * to 'post', 'comment', 'blog', 'term', and 'user'. * @param string $primary_table Database table where the object being filtered is stored (eg wp_users). * @param string $primary_id_column ID column for the filtered object in $primary_table. * @param object $context Optional. The main query object that corresponds to the type, for * example a `WP_Query`, `WP_User_Query`, or `WP_Site_Query`. * Default null. * @return string[]|false { * Array containing JOIN and WHERE SQL clauses to append to the main query, * or false if no table exists for the requested meta type. * * @type string $join SQL fragment to append to the main JOIN clause. * @type string $where SQL fragment to append to the main WHERE clause. * } */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:357
/** * Generates SQL JOIN and WHERE clauses for a first-order query clause. * * "First-order" means that it's an array with a 'key' or 'value'. * * @since 4.1.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param array $clause Query clause (passed by reference). * @param array $parent_query Parent query array. * @param string $clause_key Optional. The array key used to name the clause in the original `$meta_query` * parameters. If not provided, a key will be generated automatically. * Default empty string. * @return array { * Array containing JOIN and WHERE SQL clauses to append to a first-order query. * * @type string[] $join Array of SQL fragments to append to the main JOIN clause. * @type string[] $where Array of SQL fragments to append to the main WHERE clause. * } */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:533
/** * Gets a flattened list of sanitized meta clauses. * * This array should be used for clause lookup, as when the table alias and CAST type must be determined for * a value of 'orderby' corresponding to a meta clause. * * @since 4.2.0 * * @return array Meta clauses. */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:806
/** * Checks whether the current query has any OR relations. * * In some cases, the presence of an OR relation somewhere in the query will require * the use of a `DISTINCT` or `GROUP BY` keyword in the `SELECT` clause. The current * method can be used in these cases to determine whether such a clause is necessary. * * @since 4.3.0 * * @return bool True if the query contains any `OR` relations, otherwise false. */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:887
/** * Determines whether a query clause is first-order. * * A first-order meta query clause is one that has either a 'key' or * a 'value' array key. * * @since 4.1.0 * * @param array $query Meta query arguments. * @return bool Whether the query clause is a first-order clause. */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:260
/** * Generates SQL clauses to be appended to a main query. * * Called by the public WP_Meta_Query::get_sql(), this method is abstracted * out to maintain parity with the other Query classes. * * @since 4.1.0 * * @return string[] { * Array containing JOIN and WHERE SQL clauses to append to the main query. * * @type string $join SQL fragment to append to the main JOIN clause. * @type string $where SQL fragment to append to the main WHERE clause. * } */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:413
/** * Generates SQL clauses for a single query array. * * If nested subqueries are found, this method recurses the tree to * produce the properly nested SQL. * * @since 4.1.0 * * @param array $query Query to parse (passed by reference). * @param int $depth Optional. Number of tree levels deep we currently are. * Used to calculate indentation. Default 0. * @return string[] { * Array containing JOIN and WHERE SQL clauses to append to a single query array. * * @type string $join SQL fragment to append to the main JOIN clause. * @type string $where SQL fragment to append to the main WHERE clause. * } */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:446
/** * Identifies an existing table alias that is compatible with the current * query clause. * * We avoid unnecessary table joins by allowing each clause to look for * an existing table alias that is compatible with the query that it * needs to perform. * * An existing alias is compatible if (a) it is a sibling of `$clause` * (ie, it's under the scope of the same relation), and (b) the combination * of operator and relation between the clauses allows for a shared table join. * In the case of WP_Meta_Query, this only applies to 'IN' clauses that are * connected by the relation 'OR'. * * @since 4.1.0 * * @param array $clause Query clause. * @param array $parent_query Parent query of $clause. * @return string|false Table alias if found, otherwise false. */ Defined in <ROOT>/wp-includes/class-wp-meta-query.php:830
LTG Lions, Cardacat 16u vs Wildcats (CA) Holcomb/Knight 16u, ? 11/21/2021, ⏰ 12:30 PM, At Bat 02
ltg-lions-cardacat-16u-vs-wildcats-ca-holcomb-knight-16u-%f0%9f%93%85-11-21-2021-%e2%8f%b0-1230-pm-at-bat-02
https://lab.tagup.com/video/ltg-lions-cardacat-16u-vs-wildcats-ca-holcomb-knight-16u-%f0%9f%93%85-11-21-2021-%e2%8f%b0-1230-pm-at-bat-02/
/** * Constructor. * * @since 3.5.0 * * @param WP_Post|object $post Post object. */ Defined in <ROOT>/wp-includes/class-wp-post.php:265
/** * Isset-er. * * @since 3.5.0 * * @param string $key Property to check if set. * @return bool */ Defined in <ROOT>/wp-includes/class-wp-post.php:279
/** * Getter. * * @since 3.5.0 * * @param string $key Key to get. * @return mixed */ Defined in <ROOT>/wp-includes/class-wp-post.php:307
/** * {@Missing Summary} * * @since 3.5.0 * * @param string $filter Filter. * @return WP_Post */ Defined in <ROOT>/wp-includes/class-wp-post.php:358
/** * Convert object to array. * * @since 3.5.0 * * @return array Object as array. */ Defined in <ROOT>/wp-includes/class-wp-post.php:377
/** * Retrieve WP_Post instance. * * @since 3.5.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param int $post_id Post ID. * @return WP_Post|false Post object, false otherwise. */ Defined in <ROOT>/wp-includes/class-wp-post.php:232
SELECT wp_lhaw_posts.* FROM wp_lhaw_posts WHERE 1=1 AND wp_lhaw_posts.post_name = 'ltg-lions-cardacat-16u-vs-wildcats-ca-holcomb-knight-16u-%f0%9f%93%85-11-21-2021-%e2%8f%b0-1230-pm-at-bat-02' AND wp_lhaw_posts.post_type IN ('page', 'post', 'video', 'wpvr_video') ORDER BY wp_lhaw_posts.post_date DESC
LTG Lions, Cardacat 16u vs Wildcats (CA) Holcomb/Knight 16u, ? 11/21/2021, ⏰ 12:30 PM, At Bat 02
ltg-lions-cardacat-16u-vs-wildcats-ca-holcomb-knight-16u-%f0%9f%93%85-11-21-2021-%e2%8f%b0-1230-pm-at-bat-02
https://lab.tagup.com/video/ltg-lions-cardacat-16u-vs-wildcats-ca-holcomb-knight-16u-%f0%9f%93%85-11-21-2021-%e2%8f%b0-1230-pm-at-bat-02/
/** * Constructor. * * @since 3.5.0 * * @param WP_Post|object $post Post object. */ Defined in <ROOT>/wp-includes/class-wp-post.php:265
/** * Isset-er. * * @since 3.5.0 * * @param string $key Property to check if set. * @return bool */ Defined in <ROOT>/wp-includes/class-wp-post.php:279
/** * Getter. * * @since 3.5.0 * * @param string $key Key to get. * @return mixed */ Defined in <ROOT>/wp-includes/class-wp-post.php:307
/** * {@Missing Summary} * * @since 3.5.0 * * @param string $filter Filter. * @return WP_Post */ Defined in <ROOT>/wp-includes/class-wp-post.php:358
/** * Convert object to array. * * @since 3.5.0 * * @return array Object as array. */ Defined in <ROOT>/wp-includes/class-wp-post.php:377
/** * Retrieve WP_Post instance. * * @since 3.5.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param int $post_id Post ID. * @return WP_Post|false Post object, false otherwise. */ Defined in <ROOT>/wp-includes/class-wp-post.php:232
LTG Lions, Cardacat 16u vs Wildcats (CA) Holcomb/Knight 16u, ? 11/21/2021, ⏰ 12:30 PM, At Bat 02
ltg-lions-cardacat-16u-vs-wildcats-ca-holcomb-knight-16u-%f0%9f%93%85-11-21-2021-%e2%8f%b0-1230-pm-at-bat-02
https://lab.tagup.com/video/ltg-lions-cardacat-16u-vs-wildcats-ca-holcomb-knight-16u-%f0%9f%93%85-11-21-2021-%e2%8f%b0-1230-pm-at-bat-02/
/** * Constructor. * * @since 3.5.0 * * @param WP_Post|object $post Post object. */ Defined in <ROOT>/wp-includes/class-wp-post.php:265
/** * Isset-er. * * @since 3.5.0 * * @param string $key Property to check if set. * @return bool */ Defined in <ROOT>/wp-includes/class-wp-post.php:279
/** * Getter. * * @since 3.5.0 * * @param string $key Key to get. * @return mixed */ Defined in <ROOT>/wp-includes/class-wp-post.php:307
/** * {@Missing Summary} * * @since 3.5.0 * * @param string $filter Filter. * @return WP_Post */ Defined in <ROOT>/wp-includes/class-wp-post.php:358
/** * Convert object to array. * * @since 3.5.0 * * @return array Object as array. */ Defined in <ROOT>/wp-includes/class-wp-post.php:377
/** * Retrieve WP_Post instance. * * @since 3.5.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param int $post_id Post ID. * @return WP_Post|false Post object, false otherwise. */ Defined in <ROOT>/wp-includes/class-wp-post.php:232
/** * Initiates object properties and sets default values. * * @since 1.5.0 */ Defined in <ROOT>/wp-includes/class-wp-query.php:519
/** * Reparses the query vars. * * @since 1.5.0 */ Defined in <ROOT>/wp-includes/class-wp-query.php:547
/** * Fills in the query variables, which do not exist within the parameter. * * @since 2.1.0 * @since 4.5.0 Removed the `comments_popup` public query variable. * * @param array $query_vars Defined query variables. * @return array Complete query variables with undefined ones filled in empty. */ Defined in <ROOT>/wp-includes/class-wp-query.php:560
/** * Parses a query string and sets query type booleans. * * @since 1.5.0 * @since 4.2.0 Introduced the ability to order by specific clauses of a `$meta_query`, by passing the clause's * array key to `$orderby`. * @since 4.4.0 Introduced `$post_name__in` and `$title` parameters. `$s` was updated to support excluded * search terms, by prepending a hyphen. * @since 4.5.0 Removed the `$comments_popup` parameter. * Introduced the `$comment_status` and `$ping_status` parameters. * Introduced `RAND(x)` syntax for `$orderby`, which allows an integer seed value to random sorts. * @since 4.6.0 Added 'post_name__in' support for `$orderby`. Introduced the `$lazy_load_term_meta` argument. * @since 4.9.0 Introduced the `$comment_count` parameter. * @since 5.1.0 Introduced the `$meta_compare_key` parameter. * @since 5.3.0 Introduced the `$meta_type_key` parameter. * @since 6.1.0 Introduced the `$update_menu_item_cache` parameter. * @since 6.2.0 Introduced the `$search_columns` parameter. * * @param string|array $query { * Optional. Array or string of Query parameters. * * @type int $attachment_id Attachment post ID. Used for 'attachment' post_type. * @type int|string $author Author ID, or comma-separated list of IDs. * @type string $author_name User 'user_nicename'. * @type int[] $author__in An array of author IDs to query from. * @type int[] $author__not_in An array of author IDs not to query from. * @type bool $cache_results Whether to cache post information. Default true. * @type int|string $cat Category ID or comma-separated list of IDs (this or any children). * @type int[] $category__and An array of category IDs (AND in). * @type int[] $category__in An array of category IDs (OR in, no children). * @type int[] $category__not_in An array of category IDs (NOT in). * @type string $category_name Use category slug (not name, this or any children). * @type array|int $comment_count Filter results by comment count. Provide an integer to match * comment count exactly. Provide an array with integer 'value' * and 'compare' operator ('=', '!=', '>', '>=', '<', '<=' ) to * compare against comment_count in a specific way. * @type string $comment_status Comment status. * @type int $comments_per_page The number of comments to return per page. * Default 'comments_per_page' option. * @type array $date_query An associative array of WP_Date_Query arguments. * See WP_Date_Query::__construct(). * @type int $day Day of the month. Default empty. Accepts numbers 1-31. * @type bool $exact Whether to search by exact keyword. Default false. * @type string $fields Post fields to query for. Accepts: * - '' Returns an array of complete post objects (`WP_Post[]`). * - 'ids' Returns an array of post IDs (`int[]`). * - 'id=>parent' Returns an associative array of parent post IDs, * keyed by post ID (`int[]`). * Default ''. * @type int $hour Hour of the day. Default empty. Accepts numbers 0-23. * @type int|bool $ignore_sticky_posts Whether to ignore sticky posts or not. Setting this to false * excludes stickies from 'post__in'. Accepts 1|true, 0|false. * Default false. * @type int $m Combination YearMonth. Accepts any four-digit year and month * numbers 01-12. Default empty. * @type string|string[] $meta_key Meta key or keys to filter by. * @type string|string[] $meta_value Meta value or values to filter by. * @type string $meta_compare MySQL operator used for comparing the meta value. * See WP_Meta_Query::__construct() for accepted values and default value. * @type string $meta_compare_key MySQL operator used for comparing the meta key. * See WP_Meta_Query::__construct() for accepted values and default value. * @type string $meta_type MySQL data type that the meta_value column will be CAST to for comparisons. * See WP_Meta_Query::__construct() for accepted values and default value. * @type string $meta_type_key MySQL data type that the meta_key column will be CAST to for comparisons. * See WP_Meta_Query::__construct() for accepted values and default value. * @type array $meta_query An associative array of WP_Meta_Query arguments. * See WP_Meta_Query::__construct() for accepted values. * @type int $menu_order The menu order of the posts. * @type int $minute Minute of the hour. Default empty. Accepts numbers 0-59. * @type int $monthnum The two-digit month. Default empty. Accepts numbers 1-12. * @type string $name Post slug. * @type bool $nopaging Show all posts (true) or paginate (false). Default false. * @type bool $no_found_rows Whether to skip counting the total rows found. Enabling can improve * performance. Default false. * @type int $offset The number of posts to offset before retrieval. * @type string $order Designates ascending or descending order of posts. Default 'DESC'. * Accepts 'ASC', 'DESC'. * @type string|array $orderby Sort retrieved posts by parameter. One or more options may be passed. * To use 'meta_value', or 'meta_value_num', 'meta_key=keyname' must be * also be defined. To sort by a specific `$meta_query` clause, use that * clause's array key. Accepts: * - 'none' * - 'name' * - 'author' * - 'date' * - 'title' * - 'modified' * - 'menu_order' * - 'parent' * - 'ID' * - 'rand' * - 'relevance' * - 'RAND(x)' (where 'x' is an integer seed value) * - 'comment_count' * - 'meta_value' * - 'meta_value_num' * - 'post__in' * - 'post_name__in' * - 'post_parent__in' * - The array keys of `$meta_query`. * Default is 'date', except when a search is being performed, when * the default is 'relevance'. * @type int $p Post ID. * @type int $page Show the number of posts that would show up on page X of a * static front page. * @type int $paged The number of the current page. * @type int $page_id Page ID. * @type string $pagename Page slug. * @type string $perm Show posts if user has the appropriate capability. * @type string $ping_status Ping status. * @type int[] $post__in An array of post IDs to retrieve, sticky posts will be included. * @type int[] $post__not_in An array of post IDs not to retrieve. Note: a string of comma- * separated IDs will NOT work. * @type string $post_mime_type The mime type of the post. Used for 'attachment' post_type. * @type string[] $post_name__in An array of post slugs that results must match. * @type int $post_parent Page ID to retrieve child pages for. Use 0 to only retrieve * top-level pages. * @type int[] $post_parent__in An array containing parent page IDs to query child pages from. * @type int[] $post_parent__not_in An array containing parent page IDs not to query child pages from. * @type string|string[] $post_type A post type slug (string) or array of post type slugs. * Default 'any' if using 'tax_query'. * @type string|string[] $post_status A post status (string) or array of post statuses. * @type int $posts_per_page The number of posts to query for. Use -1 to request all posts. * @type int $posts_per_archive_page The number of posts to query for by archive page. Overrides * 'posts_per_page' when is_archive(), or is_search() are true. * @type string $s Search keyword(s). Prepending a term with a hyphen will * exclude posts matching that term. Eg, 'pillow -sofa' will * return posts containing 'pillow' but not 'sofa'. The * character used for exclusion can be modified using the * the 'wp_query_search_exclusion_prefix' filter. * @type string[] $search_columns Array of column names to be searched. Accepts 'post_title', * 'post_excerpt' and 'post_content'. Default empty array. * @type int $second Second of the minute. Default empty. Accepts numbers 0-59. * @type bool $sentence Whether to search by phrase. Default false. * @type bool $suppress_filters Whether to suppress filters. Default false. * @type string $tag Tag slug. Comma-separated (either), Plus-separated (all). * @type int[] $tag__and An array of tag IDs (AND in). * @type int[] $tag__in An array of tag IDs (OR in). * @type int[] $tag__not_in An array of tag IDs (NOT in). * @type int $tag_id Tag id or comma-separated list of IDs. * @type string[] $tag_slug__and An array of tag slugs (AND in). * @type string[] $tag_slug__in An array of tag slugs (OR in). unless 'ignore_sticky_posts' is * true. Note: a string of comma-separated IDs will NOT work. * @type array $tax_query An associative array of WP_Tax_Query arguments. * See WP_Tax_Query::__construct(). * @type string $title Post title. * @type bool $update_post_meta_cache Whether to update the post meta cache. Default true. * @type bool $update_post_term_cache Whether to update the post term cache. Default true. * @type bool $update_menu_item_cache Whether to update the menu item cache. Default false. * @type bool $lazy_load_term_meta Whether to lazy-load term meta. Setting to false will * disable cache priming for term meta, so that each * get_term_meta() call will hit the database. * Defaults to the value of `$update_post_term_cache`. * @type int $w The week number of the year. Default empty. Accepts numbers 0-53. * @type int $year The four-digit year. Default empty. Accepts any four-digit year. * } */ Defined in <ROOT>/wp-includes/class-wp-query.php:791
/** * Parses various taxonomy related query vars. * * For BC, this method is not marked as protected. See [28987]. * * @since 3.1.0 * * @param array $q The query variables. Passed by reference. */ Defined in <ROOT>/wp-includes/class-wp-query.php:1152
/** * Sets the 404 property and saves whether query is feed. * * @since 2.0.0 */ Defined in <ROOT>/wp-includes/class-wp-query.php:1804
/** * Retrieves the value of a query variable. * * @since 1.5.0 * @since 3.9.0 The `$default_value` argument was introduced. * * @param string $query_var Query variable key. * @param mixed $default_value Optional. Value to return if the query variable is not set. * Default empty string. * @return mixed Contents of the query variable. */ Defined in <ROOT>/wp-includes/class-wp-query.php:1833
/** * Sets the value of a query variable. * * @since 1.5.0 * * @param string $query_var Query variable key. * @param mixed $value Query variable value. */ Defined in <ROOT>/wp-includes/class-wp-query.php:1849
/** * Retrieves an array of posts based on query variables. * * There are a few filters and actions that can be used to modify the post * database query. * * @since 1.5.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @return WP_Post[]|int[] Array of post objects or post IDs. */ Defined in <ROOT>/wp-includes/class-wp-query.php:1865
/** * Sets up the next post and iterate current post index. * * @since 1.5.0 * * @return WP_Post Next post. */ Defined in <ROOT>/wp-includes/class-wp-query.php:3666
/** * Sets up the current post. * * Retrieves the next post, sets up the post, sets the 'in the loop' * property to true. * * @since 1.5.0 * * @global WP_Post $post Global post object. */ Defined in <ROOT>/wp-includes/class-wp-query.php:3685
/** * Determines whether there are more posts available in the loop. * * Calls the {@see 'loop_end'} action when the loop is complete. * * @since 1.5.0 * * @return bool True if posts are available, false if end of the loop. */ Defined in <ROOT>/wp-includes/class-wp-query.php:3727
/** * Rewinds the posts and resets post index. * * @since 1.5.0 */ Defined in <ROOT>/wp-includes/class-wp-query.php:3763
/** * Iterates current comment index and returns WP_Comment object. * * @since 2.2.0 * * @return WP_Comment Comment object. */ Defined in <ROOT>/wp-includes/class-wp-query.php:3777
/** * Sets up the current comment. * * @since 2.2.0 * * @global WP_Comment $comment Global comment object. */ Defined in <ROOT>/wp-includes/class-wp-query.php:3792
/** * Determines whether there are more comments available. * * Automatically rewinds comments when finished. * * @since 2.2.0 * * @return bool True if comments are available, false if no more comments. */ Defined in <ROOT>/wp-includes/class-wp-query.php:3816
/** * Rewinds the comments, resets the comment index and comment to first. * * @since 2.2.0 */ Defined in <ROOT>/wp-includes/class-wp-query.php:3831
/** * Sets up the WordPress query by parsing query string. * * @since 1.5.0 * * @see WP_Query::parse_query() for all available arguments. * * @param string|array $query URL query string or array of query arguments. * @return WP_Post[]|int[] Array of post objects or post IDs. */ Defined in <ROOT>/wp-includes/class-wp-query.php:3848
/** * Retrieves the currently queried object. * * If queried object is not set, then the queried object will be set from * the category, tag, taxonomy, posts page, single post, page, or author * query variable. After it is set up, it will be returned. * * @since 1.5.0 * * @return WP_Term|WP_Post_Type|WP_Post|WP_User|null The queried object. */ Defined in <ROOT>/wp-includes/class-wp-query.php:3866
/** * Retrieves the ID of the currently queried object. * * @since 1.5.0 * * @return int */ Defined in <ROOT>/wp-includes/class-wp-query.php:3961
/** * Constructor. * * Sets up the WordPress query, if parameter is not empty. * * @since 1.5.0 * * @see WP_Query::parse_query() for all available arguments. * * @param string|array $query URL query string or array of vars. */ Defined in <ROOT>/wp-includes/class-wp-query.php:3982
/** * Makes private properties readable for backward compatibility. * * @since 4.0.0 * * @param string $name Property to get. * @return mixed Property. */ Defined in <ROOT>/wp-includes/class-wp-query.php:3996
/** * Makes private properties checkable for backward compatibility. * * @since 4.0.0 * * @param string $name Property to check if set. * @return bool Whether the property is set. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4010
/** * Makes private/protected methods readable for backward compatibility. * * @since 4.0.0 * * @param string $name Method to call. * @param array $arguments Arguments to pass when calling. * @return mixed|false Return value of the callback, false otherwise. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4025
/** * Determines whether the query is for an existing archive page. * * Archive pages include category, tag, author, date, custom post type, * and custom taxonomy based archives. * * @since 3.1.0 * * @see WP_Query::is_category() * @see WP_Query::is_tag() * @see WP_Query::is_author() * @see WP_Query::is_date() * @see WP_Query::is_post_type_archive() * @see WP_Query::is_tax() * * @return bool Whether the query is for an existing archive page. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4049
/** * Determines whether the query is for an existing post type archive page. * * @since 3.1.0 * * @param string|string[] $post_types Optional. Post type or array of posts types * to check against. Default empty. * @return bool Whether the query is for an existing post type archive page. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4062
/** * Determines whether the query is for an existing attachment page. * * @since 3.1.0 * * @param int|string|int[]|string[] $attachment Optional. Attachment ID, title, slug, or array of such * to check against. Default empty. * @return bool Whether the query is for an existing attachment page. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4089
/** * Determines whether the query is for an existing author archive page. * * If the $author parameter is specified, this function will additionally * check if the query is for one of the authors specified. * * @since 3.1.0 * * @param int|string|int[]|string[] $author Optional. User ID, nickname, nicename, or array of such * to check against. Default empty. * @return bool Whether the query is for an existing author archive page. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4127
/** * Determines whether the query is for an existing category archive page. * * If the $category parameter is specified, this function will additionally * check if the query is for one of the categories specified. * * @since 3.1.0 * * @param int|string|int[]|string[] $category Optional. Category ID, name, slug, or array of such * to check against. Default empty. * @return bool Whether the query is for an existing category archive page. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4166
/** * Determines whether the query is for an existing tag archive page. * * If the $tag parameter is specified, this function will additionally * check if the query is for one of the tags specified. * * @since 3.1.0 * * @param int|string|int[]|string[] $tag Optional. Tag ID, name, slug, or array of such * to check against. Default empty. * @return bool Whether the query is for an existing tag archive page. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4205
/** * Determines whether the query is for an existing custom taxonomy archive page. * * If the $taxonomy parameter is specified, this function will additionally * check if the query is for that specific $taxonomy. * * If the $term parameter is specified in addition to the $taxonomy parameter, * this function will additionally check if the query is for one of the terms * specified. * * @since 3.1.0 * * @global WP_Taxonomy[] $wp_taxonomies Registered taxonomies. * * @param string|string[] $taxonomy Optional. Taxonomy slug or slugs to check against. * Default empty. * @param int|string|int[]|string[] $term Optional. Term ID, name, slug, or array of such * to check against. Default empty. * @return bool Whether the query is for an existing custom taxonomy archive page. * True for custom taxonomy archive pages, false for built-in taxonomies * (category and tag archives). */ Defined in <ROOT>/wp-includes/class-wp-query.php:4254
/** * Determines whether the current URL is within the comments popup window. * * @since 3.1.0 * @deprecated 4.5.0 * * @return false Always returns false. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4296
/** * Determines whether the query is for an existing date archive. * * @since 3.1.0 * * @return bool Whether the query is for an existing date archive. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4309
/** * Determines whether the query is for an existing day archive. * * @since 3.1.0 * * @return bool Whether the query is for an existing day archive. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4320
/** * Determines whether the query is for a feed. * * @since 3.1.0 * * @param string|string[] $feeds Optional. Feed type or array of feed types * to check against. Default empty. * @return bool Whether the query is for a feed. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4333
/** * Determines whether the query is for a comments feed. * * @since 3.1.0 * * @return bool Whether the query is for a comments feed. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4353
/** * Determines whether the query is for the front page of the site. * * This is for what is displayed at your site's main URL. * * Depends on the site's "Front page displays" Reading Settings 'show_on_front' and 'page_on_front'. * * If you set a static page for the front page of your site, this function will return * true when viewing that page. * * Otherwise the same as {@see WP_Query::is_home()}. * * @since 3.1.0 * * @return bool Whether the query is for the front page of the site. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4373
/** * Determines whether the query is for the blog homepage. * * This is the page which shows the time based blog content of your site. * * Depends on the site's "Front page displays" Reading Settings 'show_on_front' and 'page_for_posts'. * * If you set a static page for the front page of your site, this function will return * true only on the page you set as the "Posts page". * * @since 3.1.0 * * @see WP_Query::is_front_page() * * @return bool Whether the query is for the blog homepage. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4402
/** * Determines whether the query is for the Privacy Policy page. * * This is the page which shows the Privacy Policy content of your site. * * Depends on the site's "Change your Privacy Policy page" Privacy Settings 'wp_page_for_privacy_policy'. * * This function will return true only on the page you set as the "Privacy Policy page". * * @since 5.2.0 * * @return bool Whether the query is for the Privacy Policy page. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4419
/** * Determines whether the query is for an existing month archive. * * @since 3.1.0 * * @return bool Whether the query is for an existing month archive. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4436
/** * Determines whether the query is for an existing single page. * * If the $page parameter is specified, this function will additionally * check if the query is for one of the pages specified. * * @since 3.1.0 * * @see WP_Query::is_single() * @see WP_Query::is_singular() * * @param int|string|int[]|string[] $page Optional. Page ID, title, slug, path, or array of such * to check against. Default empty. * @return bool Whether the query is for an existing single page. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4455
/** * Determines whether the query is for a paged result and not for the first page. * * @since 3.1.0 * * @return bool Whether the query is for a paged result. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4500
/** * Determines whether the query is for a post or page preview. * * @since 3.1.0 * * @return bool Whether the query is for a post or page preview. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4511
/** * Determines whether the query is for the robots.txt file. * * @since 3.1.0 * * @return bool Whether the query is for the robots.txt file. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4522
/** * Determines whether the query is for the favicon.ico file. * * @since 5.4.0 * * @return bool Whether the query is for the favicon.ico file. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4533
/** * Determines whether the query is for a search. * * @since 3.1.0 * * @return bool Whether the query is for a search. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4544
/** * Determines whether the query is for an existing single post. * * Works for any post type excluding pages. * * If the $post parameter is specified, this function will additionally * check if the query is for one of the Posts specified. * * @since 3.1.0 * * @see WP_Query::is_page() * @see WP_Query::is_singular() * * @param int|string|int[]|string[] $post Optional. Post ID, title, slug, path, or array of such * to check against. Default empty. * @return bool Whether the query is for an existing single post. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4565
/** * Determines whether the query is for an existing single post of any post type * (post, attachment, page, custom post types). * * If the $post_types parameter is specified, this function will additionally * check if the query is for one of the Posts Types specified. * * @since 3.1.0 * * @see WP_Query::is_page() * @see WP_Query::is_single() * * @param string|string[] $post_types Optional. Post type or array of post types * to check against. Default empty. * @return bool Whether the query is for an existing single post * or any of the given post types. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4619
/** * Determines whether the query is for a specific time. * * @since 3.1.0 * * @return bool Whether the query is for a specific time. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4639
/** * Determines whether the query is for a trackback endpoint call. * * @since 3.1.0 * * @return bool Whether the query is for a trackback endpoint call. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4650
/** * Determines whether the query is for an existing year archive. * * @since 3.1.0 * * @return bool Whether the query is for an existing year archive. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4661
/** * Determines whether the query is a 404 (returns no results). * * @since 3.1.0 * * @return bool Whether the query is a 404 error. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4672
/** * Determines whether the query is for an embedded post. * * @since 4.4.0 * * @return bool Whether the query is for an embedded post. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4683
/** * Determines whether the query is the main query. * * @since 3.3.0 * * @global WP_Query $wp_the_query WordPress Query object. * * @return bool Whether the query is the main query. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4696
/** * Sets up global post data. * * @since 4.1.0 * @since 4.4.0 Added the ability to pass a post ID to `$post`. * * @global int $id * @global WP_User $authordata * @global string $currentday * @global string $currentmonth * @global int $page * @global array $pages * @global int $multipage * @global int $more * @global int $numpages * * @param WP_Post|object|int $post WP_Post instance or Post ID/object. * @return true True when finished. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4720
/** * Generates post data. * * @since 5.2.0 * * @param WP_Post|object|int $post WP_Post instance or Post ID/object. * @return array|false Elements of post or false on failure. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4768
/** * After looping through a nested query, this function * restores the $post global to the current post in this query. * * @since 3.7.0 * * @global WP_Post $post Global post object. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4953
/** * Lazyloads term meta for posts in the loop. * * @since 4.4.0 * @deprecated 4.5.0 See wp_queue_posts_for_term_meta_lazyload(). * * @param mixed $check * @param int $term_id * @return mixed */ Defined in <ROOT>/wp-includes/class-wp-query.php:4970
/** * Lazyloads comment meta for comments in the loop. * * @since 4.4.0 * @deprecated 4.5.0 See wp_lazyload_comment_meta(). * * @param mixed $check * @param int $comment_id * @return mixed */ Defined in <ROOT>/wp-includes/class-wp-query.php:4985
/** * Generates SQL for the WHERE clause based on passed search terms. * * @since 3.7.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param array $q Query variables. * @return string WHERE clause. */ Defined in <ROOT>/wp-includes/class-wp-query.php:1394
/** * Checks if the terms are suitable for searching. * * Uses an array of stopwords (terms) that are excluded from the separate * term matching when searching for posts. The list of English stopwords is * the approximate search engines list, and is translatable. * * @since 3.7.0 * * @param string[] $terms Array of terms to check. * @return string[] Terms that are not stopwords. */ Defined in <ROOT>/wp-includes/class-wp-query.php:1517
/** * Retrieves stopwords used when parsing search terms. * * @since 3.7.0 * * @return string[] Stopwords. */ Defined in <ROOT>/wp-includes/class-wp-query.php:1553
/** * Generates SQL for the ORDER BY condition based on passed search terms. * * @since 3.7.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param array $q Query variables. * @return string ORDER BY clause. */ Defined in <ROOT>/wp-includes/class-wp-query.php:1600
/** * Converts the given orderby alias (if allowed) to a properly-prefixed value. * * @since 4.0.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param string $orderby Alias for the field to order by. * @return string|false Table-prefixed value to used in the ORDER clause. False otherwise. */ Defined in <ROOT>/wp-includes/class-wp-query.php:1659
/** * Parse an 'order' query variable and cast it to ASC or DESC as necessary. * * @since 4.0.0 * * @param string $order The 'order' query variable. * @return string The sanitized 'order' query variable. */ Defined in <ROOT>/wp-includes/class-wp-query.php:1787
/** * Generates cache key. * * @since 6.1.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param array $args Query arguments. * @param string $sql SQL statement. * @return string Cache key. */ Defined in <ROOT>/wp-includes/class-wp-query.php:4874
/** * Resets query flags to false. * * The query flags are what page info WordPress was able to figure out. * * @since 2.0.0 */ Defined in <ROOT>/wp-includes/class-wp-query.php:483
/** * Sets up the amount of found posts and the number of pages (if limit clause was used) * for the current query. * * @since 3.5.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @param array $q Query variables. * @param string $limits LIMIT clauses of the query. */ Defined in <ROOT>/wp-includes/class-wp-query.php:3609