• Home
  • Über uns
  • Preise
  • Galerie
  • Anfahrt
  • Kontakt
  • fb
  • yt
Kordula Roß Friseure Magdeburg

Gerhart-Hauptmann-Str. 5, 39108 Magdeburg

0391 59769446

0152 08848468

salon@kordula-ross.de
  • Home
  • Über uns
  • Preise
  • Galerie
  • Anfahrt
  • Kontakt
  • Datenschutz
  • Impressum

Archives

Kinder Waschen/Schneiden/Fönen ab 7

auf Anfrage

Posts nasdvigation

→
$first WP_Query(55)
  • contents
  • Available methods (67)
  • →
    public query -> array(3)
    'posts_per_page' => string(1) "1"
    'order' => string(4) "DESC"
    'post_type' => string(4) "team"
    →
    public query_vars -> array(64)
    'posts_per_page' => integer1
    'order' => string(4) "DESC"
    'post_type' => string(4) "team"
    'error' => string(0) ""
    'm' => string(0) ""
    'p' => integer0
    'post_parent' => string(0) ""
    'subpost' => string(0) ""
    'subpost_id' => string(0) ""
    'attachment' => string(0) ""
    'attachment_id' => integer0
    'name' => string(0) ""
    'pagename' => string(0) ""
    'page_id' => integer0
    'second' => string(0) ""
    'minute' => string(0) ""
    'hour' => string(0) ""
    'day' => integer0
    'monthnum' => integer0
    'year' => integer0
    'w' => integer0
    'category_name' => string(0) ""
    'tag' => string(0) ""
    'cat' => string(0) ""
    'tag_id' => string(0) ""
    'author' => string(0) ""
    'author_name' => string(0) ""
    'feed' => string(0) ""
    'tb' => string(0) ""
    'paged' => integer0
    'meta_key' => string(0) ""
    'meta_value' => string(0) ""
    'preview' => string(0) ""
    's' => string(0) ""
    'sentence' => string(0) ""
    'title' => string(0) ""
    'fields' => string(0) ""
    'menu_order' => string(0) ""
    'embed' => string(0) ""
    'category__in' => array(0)
    'category__not_in' => array(0)
    'category__and' => array(0)
    'post__in' => array(0)
    'post__not_in' => array(0)
    'post_name__in' => array(0)
    'tag__in' => array(0)
    'tag__not_in' => array(0)
    'tag__and' => array(0)
    'tag_slug__in' => array(0)
    'tag_slug__and' => array(0)
    'post_parent__in' => array(0)
    'post_parent__not_in' => array(0)
    'author__in' => array(0)
    'author__not_in' => array(0)
    'orderby' => string(10) "menu_order"
    'ignore_sticky_posts' => boolFALSE
    'suppress_filters' => boolFALSE
    'cache_results' => boolTRUE
    'update_post_term_cache' => boolTRUE
    'lazy_load_term_meta' => boolTRUE
    'update_post_meta_cache' => boolTRUE
    'nopaging' => boolFALSE
    'comments_per_page' => string(2) "50"
    'no_found_rows' => boolFALSE
    →
    public tax_query -> WP_Tax_Query(6)
    • contents
    • Available methods (11)
    • Static class properties (1)
    • public queries -> array(0)
      public relation -> string(3) "AND"
      protected table_aliases -> array(0)
      public queried_terms -> array(0)
      public primary_table -> string(8) "wp_posts"
      public primary_id_column -> string(2) "ID"
    • →
      public __construct($tax_query)
      Constructor.
      
      @since 3.1.0
      @since 4.1.0 Added support for `$operator` 'NOT EXISTS' and 'EXISTS' values.
      
      @param array $tax_query {
      Array of taxonomy query clauses.
      
      @type string $relation Optional. The MySQL keyword used to join
      the clauses of the query. Accepts 'AND', or 'OR'. Default 'AND'.
      @type array  ...$0 {
      An array of first-order clause parameters, or another fully-formed tax query.
      
      @type string           $taxonomy         Taxonomy being queried. Optional when field=term_taxonomy_id.
      @type string|int|array $terms            Term or terms to filter by.
      @type string           $field            Field to match $terms against. Accepts 'term_id', 'slug',
      'name', or 'term_taxonomy_id'. Default: 'term_id'.
      @type string           $operator         MySQL operator to be used with $terms in the WHERE clause.
      Accepts 'AND', 'IN', 'NOT IN', 'EXISTS', 'NOT EXISTS'.
      Default: 'IN'.
      @type bool             $include_children Optional. Whether to include child terms.
      Requires a $taxonomy. Default: true.
      }
      }
      
      Defined in <ROOT>wp-includes/class-wp-tax-query.php:114
      →
      public get_sql($primary_table, $primary_id_column) -> array {
      Generates SQL clauses to be appended to a main query.
      
      @since 3.1.0
      
      @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.
      @return array {
      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-tax-query.php:246
      →
      public get_sql_for_clause(&$clause, $parent_query) -> array {
      Generate SQL JOIN and WHERE clauses for a "first-order" query clause.
      
      @since 4.1.0
      
      @global wpdb $wpdb The WordPress database abstraction object.
      
      @param array $clause       Query clause (passed by reference).
      @param array $parent_query Parent query array.
      @return array {
      Array containing JOIN and WHERE SQL clauses to append to a first-order 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-tax-query.php:383
      →
      public sanitize_query($queries) -> array Sanitized array of query clauses.
      Ensure the 'tax_query' argument passed to the class constructor is well-formed.
      
      Ensures that each query-level clause has a 'relation' key, and that
      each first-order clause contains all the necessary keys from `$defaults`.
      
      @since 4.1.0
      
      @param array $queries Array of queries clauses.
      @return array Sanitized array of query clauses.
      
      Defined in <ROOT>wp-includes/class-wp-tax-query.php:135
      →
      public sanitize_relation($relation) -> string Sanitized relation ('AND' or 'OR').
      Sanitize a 'relation' operator.
      
      @since 4.1.0
      
      @param string $relation Raw relation key from the query argument.
      @return string Sanitized relation ('AND' or 'OR').
      
      Defined in <ROOT>wp-includes/class-wp-tax-query.php:206
      →
      public transform_query(&$query, $resulting_field)
      Transforms a single query, from one field to another.
      
      Operates on the `$query` object by reference. In the case of error,
      `$query` is converted to a WP_Error object.
      
      @since 3.2.0
      
      @global wpdb $wpdb The WordPress database abstraction object.
      
      @param array  $query           The single query. Passed by reference.
      @param string $resulting_field The resulting field. Accepts 'slug', 'name', 'term_taxonomy_id',
      or 'term_id'. Default 'term_id'.
      
      Defined in <ROOT>wp-includes/class-wp-tax-query.php:593
      →
      protected static is_first_order_clause($query) -> bool Whether the query clause is a first-order clause.
      Determine whether a clause is first-order.
      
      A "first-order" clause is one that contains any of the first-order
      clause keys ('terms', 'taxonomy', 'include_children', 'field',
      'operator'). An empty clause also counts as a first-order clause,
      for backward compatibility. Any clause that doesn't meet this is
      determined, by process of elimination, to be a higher-order query.
      
      @since 4.1.0
      
      @param array $query Tax query arguments.
      @return bool Whether the query clause is a first-order clause.
      
      Defined in <ROOT>wp-includes/class-wp-tax-query.php:228
      →
      protected find_compatible_table_alias($clause, $parent_query) -> string|false Table alias if found, otherwise false.
      Identify 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_Tax_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-tax-query.php:504
      →
      protected get_sql_clauses() -> array {
      Generate SQL clauses to be appended to a main query.
      
      Called by the public WP_Tax_Query::get_sql(), this method
      is abstracted out to maintain parity with the other Query classes.
      
      @since 4.1.0
      
      @return array {
      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-tax-query.php:268
      →
      protected get_sql_for_query(&$query, $depth = 0) -> array {
      Generate 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 array {
      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-tax-query.php:301
      →
      private clean_query(&$query)
      Validates a single query.
      
      @since 3.2.0
      
      @param array $query The single query. Passed by reference.
      
      Defined in <ROOT>wp-includes/class-wp-tax-query.php:545
    • →
      private $no_results :: array(2)
       0
      "join"""
      "where""0 = 1"
    →
    public meta_query -> WP_Meta_Query(9)
    • contents
    • Available methods (12)
    • public queries -> array(0)
      public relation -> NULL
      public meta_table -> NULL
      public meta_id_column -> NULL
      public primary_table -> NULL
      public primary_id_column -> NULL
      protected table_aliases -> array(0)
      protected clauses -> array(0)
      protected has_or_relation -> boolFALSE
    • →
      public __construct($meta_query = false)
      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 $key         Meta key 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 '=') or '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 $value       Meta value 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' or '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', or 'UNSIGNED'.
      Default is 'CHAR'.
      }
      }
      
      Defined in <ROOT>wp-includes/class-wp-meta-query.php:136
      →
      public get_cast_for_type($type = "") -> string MySQL type.
      Return 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:287
      →
      public get_clauses() -> array Meta clauses.
      Get 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:763
      →
      public get_sql($type, $primary_table, $primary_id_column, $context = NULL) -> array|false {
      Generates SQL clauses to be appended to a main query.
      
      @since 3.2.0
      
      @param string $type              Type of meta, eg 'user', 'post'.
      @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.
      @return array|false {
      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:321
      →
      public get_sql_for_clause(&$clause, $parent_query, $clause_key = "") -> array {
      Generate 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.
      @return array {
      Array containing JOIN and WHERE SQL clauses to append to a first-order 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:494
      →
      public has_or_relation() -> bool True if the query contains any `OR` relations, otherwise false.
      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:844
      →
      public parse_query_vars($qv)
      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:239
      →
      public sanitize_query($queries) -> array Sanitized array of query clauses.
      Ensure 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:160
      →
      protected find_compatible_table_alias($clause, $parent_query) -> string|false Table alias if found, otherwise false.
      Identify 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:787
      →
      protected get_sql_clauses() -> array {
      Generate 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 array {
      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:375
      →
      protected get_sql_for_query(&$query, $depth = 0) -> array {
      Generate 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 array {
      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:408
      →
      protected is_first_order_clause($query) -> bool Whether the query clause is a first-order clause.
      Determine 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:228
    public date_query -> boolFALSE
    →
    public request -> string(182) "SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts WHERE 1=1 AND wp_posts.post…"
    SELECT SQL_CALC_FOUND_ROWS  wp_posts.ID FROM wp_posts  WHERE 1=1  AND wp_posts.post_type = 'team' AND (wp_posts.post_status = 'publish')  ORDER BY wp_posts.menu_order DESC LIMIT 0, 1
    →
    public posts -> array(1)
    →
    WP_Post(24)
    • contents
    • Available methods (6)
    • public ID -> integer3151
      public post_author -> string(1) "1"
      public post_date -> string(19) "2017-08-22 10:12:56"
      public post_date_gmt -> string(19) "2017-08-22 10:12:56"
      →
      public post_content -> string UTF-8(2814) "<table> <tbody> <tr> <td><strong>Werdegang</strong></td> <td>&nbsp;</td> </tr> <…"
      <table>
      <tbody>
      <tr>
      <td><strong>Werdegang</strong></td>
      <td>&nbsp;</td>
      </tr>
      <tr>
      <td>2001 – 2010</td>
      <td>Friseurausbildung und anschließend Festanstellung bei "Chici Mici" – Magdeburg</td>
      </tr>
      <tr>
      <td>2010</td>
      <td>Meisterschule</td>
      </tr>
      <tr>
      <td>2010 – 2016</td>
      <td>Gesellschafterin/Geschäftsführerin/Friseurin "Pietschmann &amp; Roß" Magdeburg</td>
      </tr>
      <tr>
      <td>2016</td>
      <td>Inhaberin/Friseurin "Kordula Roß Friseure" Magdeburg</td>
      </tr>
      <tr>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
      </tr>
      <tr>
      <td><strong>Weiterbildungen</strong></td>
      <td>&nbsp;</td>
      </tr>
      <tr>
      <td>2003</td>
      <td>Color Congress | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2004</td>
      <td>Neueste ABC Techniken für Cut &amp; Color | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2005</td>
      <td>Color/Blonding | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2005</td>
      <td>Color/Blonding | "Chici Mici" – Magdeburg</td>
      </tr>
      <tr>
      <td>2005</td>
      <td>Haircamp 2005 Highlights | "Chici Mici" – Magdeburg</td>
      </tr>
      <tr>
      <td>2006</td>
      <td>Haircamp | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2006</td>
      <td>Color | Paul Mitchell – Darmstadt</td>
      </tr>
      <tr>
      <td>2007</td>
      <td>Men-Styling | Paul Mitchell – Darmstadt</td>
      </tr>
      <tr>
      <td>2007</td>
      <td>Signature Gathering 2007 | Paul Mitchell – USA – Las Vegas</td>
      </tr>
      <tr>
      <td>2008</td>
      <td>Longhair | Paul Mitchell – Darmstadt</td>
      </tr>
      <tr>
      <td>2008</td>
      <td>Men | Paul Mitchell – Magdeburg</td>
      </tr>
      <tr>
      <td>2008</td>
      <td>Core Cutting | Erfurt</td>
      </tr>
      <tr>
      <td>2010</td>
      <td>New Technology | Great Length – Berlin</td>
      </tr>
      <tr>
      <td>2012</td>
      <td>Cut &amp; Color | Pietschmann und Roß – Magdeburg</td>
      </tr>
      <tr>
      <td>2012</td>
      <td>Cut &amp; Style | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2012</td>
      <td>Hair Camp Mallorca</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Cut &amp; Motivation by Peter Hartmann</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Core Cutting by Ulf Gattert</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Great Length Seminar "GL Apps Training" – Berlin</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Haircamp | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Hairdreams Seminar Basic – Magdeburg</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Cut&amp;Color/Paul Mitchell "Robert Cromeans" Hamburg</td>
      </tr>
      <tr>
      <td>2014</td>
      <td>Haircamp/Paul Mitchell -Berlin</td>
      </tr>
      <tr>
      <td>2015</td>
      <td>XG-Kollektion Chris Vegas</td>
      </tr>
      <tr>
      <td>2015</td>
      <td>Gobal Gathering Madrid</td>
      </tr>
      <tr>
      <td>2016</td>
      <td>Hair Camp Berlin</td>
      </tr>
      <tr>
      <td>2017</td>
      <td>Personal Coaching und Core Cutting mit Ulf Gattert</td>
      </tr>
      <tr>
      <td>2017</td>
      <td>Color by Markus Fischer</td>
      </tr>
      </tbody>
      </table>
      <p>&nbsp;</p>
      public post_title -> string UTF-8(11) "Kordula Roß"
      public post_excerpt -> string(0) ""
      public post_status -> string(7) "publish"
      public comment_status -> string(6) "closed"
      public ping_status -> string(6) "closed"
      public post_password -> string(0) ""
      public post_name -> string(5) "kordi"
      public to_ping -> string(0) ""
      public pinged -> string(0) ""
      public post_modified -> string(19) "2019-11-01 14:21:38"
      public post_modified_gmt -> string(19) "2019-11-01 13:21:38"
      public post_content_filtered -> string(0) ""
      public post_parent -> integer0
      public guid -> string(55) "https://www.kordula-ross.de/?post_type=team&#038;p=3151"
      public menu_order -> integer4
      public post_type -> string(4) "team"
      public post_mime_type -> string(0) ""
      public comment_count -> string(1) "0"
      public filter -> string(3) "raw"
    • →
      public static get_instance($post_id) -> WP_Post|false Post object, false otherwise.
      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:231
      →
      public __construct($post)
      Constructor.
      
      @since 3.5.0
      
      @param WP_Post|object $post Post object.
      
      Defined in <ROOT>wp-includes/class-wp-post.php:264
      →
      public __get($key) -> mixed
      Getter.
      
      @since 3.5.0
      
      @param string $key Key to get.
      @return mixed
      
      Defined in <ROOT>wp-includes/class-wp-post.php:306
      →
      public __isset($key) -> bool
      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:278
      →
      public filter($filter) -> WP_Post
      {@Missing Summary}
      
      @since 3.5.0
      
      @param string $filter Filter.
      @return WP_Post
      
      Defined in <ROOT>wp-includes/class-wp-post.php:357
      →
      public to_array() -> array Object as array.
      Convert object to array.
      
      @since 3.5.0
      
      @return array Object as array.
      
      Defined in <ROOT>wp-includes/class-wp-post.php:376
    public post_count -> integer1
    public current_post -> integer0
    public in_the_loop -> boolTRUE
    →
    public post -> WP_Post(24)
    • contents
    • Available methods (6)
    • public ID -> integer3151
      public post_author -> string(1) "1"
      public post_date -> string(19) "2017-08-22 10:12:56"
      public post_date_gmt -> string(19) "2017-08-22 10:12:56"
      →
      public post_content -> string UTF-8(2814) "<table> <tbody> <tr> <td><strong>Werdegang</strong></td> <td>&nbsp;</td> </tr> <…"
      <table>
      <tbody>
      <tr>
      <td><strong>Werdegang</strong></td>
      <td>&nbsp;</td>
      </tr>
      <tr>
      <td>2001 – 2010</td>
      <td>Friseurausbildung und anschließend Festanstellung bei "Chici Mici" – Magdeburg</td>
      </tr>
      <tr>
      <td>2010</td>
      <td>Meisterschule</td>
      </tr>
      <tr>
      <td>2010 – 2016</td>
      <td>Gesellschafterin/Geschäftsführerin/Friseurin "Pietschmann &amp; Roß" Magdeburg</td>
      </tr>
      <tr>
      <td>2016</td>
      <td>Inhaberin/Friseurin "Kordula Roß Friseure" Magdeburg</td>
      </tr>
      <tr>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
      </tr>
      <tr>
      <td><strong>Weiterbildungen</strong></td>
      <td>&nbsp;</td>
      </tr>
      <tr>
      <td>2003</td>
      <td>Color Congress | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2004</td>
      <td>Neueste ABC Techniken für Cut &amp; Color | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2005</td>
      <td>Color/Blonding | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2005</td>
      <td>Color/Blonding | "Chici Mici" – Magdeburg</td>
      </tr>
      <tr>
      <td>2005</td>
      <td>Haircamp 2005 Highlights | "Chici Mici" – Magdeburg</td>
      </tr>
      <tr>
      <td>2006</td>
      <td>Haircamp | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2006</td>
      <td>Color | Paul Mitchell – Darmstadt</td>
      </tr>
      <tr>
      <td>2007</td>
      <td>Men-Styling | Paul Mitchell – Darmstadt</td>
      </tr>
      <tr>
      <td>2007</td>
      <td>Signature Gathering 2007 | Paul Mitchell – USA – Las Vegas</td>
      </tr>
      <tr>
      <td>2008</td>
      <td>Longhair | Paul Mitchell – Darmstadt</td>
      </tr>
      <tr>
      <td>2008</td>
      <td>Men | Paul Mitchell – Magdeburg</td>
      </tr>
      <tr>
      <td>2008</td>
      <td>Core Cutting | Erfurt</td>
      </tr>
      <tr>
      <td>2010</td>
      <td>New Technology | Great Length – Berlin</td>
      </tr>
      <tr>
      <td>2012</td>
      <td>Cut &amp; Color | Pietschmann und Roß – Magdeburg</td>
      </tr>
      <tr>
      <td>2012</td>
      <td>Cut &amp; Style | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2012</td>
      <td>Hair Camp Mallorca</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Cut &amp; Motivation by Peter Hartmann</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Core Cutting by Ulf Gattert</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Great Length Seminar "GL Apps Training" – Berlin</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Haircamp | Paul Mitchell – Seeheim-Jungheim</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Hairdreams Seminar Basic – Magdeburg</td>
      </tr>
      <tr>
      <td>2013</td>
      <td>Cut&amp;Color/Paul Mitchell "Robert Cromeans" Hamburg</td>
      </tr>
      <tr>
      <td>2014</td>
      <td>Haircamp/Paul Mitchell -Berlin</td>
      </tr>
      <tr>
      <td>2015</td>
      <td>XG-Kollektion Chris Vegas</td>
      </tr>
      <tr>
      <td>2015</td>
      <td>Gobal Gathering Madrid</td>
      </tr>
      <tr>
      <td>2016</td>
      <td>Hair Camp Berlin</td>
      </tr>
      <tr>
      <td>2017</td>
      <td>Personal Coaching und Core Cutting mit Ulf Gattert</td>
      </tr>
      <tr>
      <td>2017</td>
      <td>Color by Markus Fischer</td>
      </tr>
      </tbody>
      </table>
      <p>&nbsp;</p>
      public post_title -> string UTF-8(11) "Kordula Roß"
      public post_excerpt -> string(0) ""
      public post_status -> string(7) "publish"
      public comment_status -> string(6) "closed"
      public ping_status -> string(6) "closed"
      public post_password -> string(0) ""
      public post_name -> string(5) "kordi"
      public to_ping -> string(0) ""
      public pinged -> string(0) ""
      public post_modified -> string(19) "2019-11-01 14:21:38"
      public post_modified_gmt -> string(19) "2019-11-01 13:21:38"
      public post_content_filtered -> string(0) ""
      public post_parent -> integer0
      public guid -> string(55) "https://www.kordula-ross.de/?post_type=team&#038;p=3151"
      public menu_order -> integer4
      public post_type -> string(4) "team"
      public post_mime_type -> string(0) ""
      public comment_count -> string(1) "0"
      public filter -> string(3) "raw"
    • →
      public static get_instance($post_id) -> WP_Post|false Post object, false otherwise.
      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:231
      →
      public __construct($post)
      Constructor.
      
      @since 3.5.0
      
      @param WP_Post|object $post Post object.
      
      Defined in <ROOT>wp-includes/class-wp-post.php:264
      →
      public __get($key) -> mixed
      Getter.
      
      @since 3.5.0
      
      @param string $key Key to get.
      @return mixed
      
      Defined in <ROOT>wp-includes/class-wp-post.php:306
      →
      public __isset($key) -> bool
      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:278
      →
      public filter($filter) -> WP_Post
      {@Missing Summary}
      
      @since 3.5.0
      
      @param string $filter Filter.
      @return WP_Post
      
      Defined in <ROOT>wp-includes/class-wp-post.php:357
      →
      public to_array() -> array Object as array.
      Convert object to array.
      
      @since 3.5.0
      
      @return array Object as array.
      
      Defined in <ROOT>wp-includes/class-wp-post.php:376
    public comment_count -> integer0
    public current_comment -> integer-1
    public found_posts -> integer1
    public max_num_pages -> float1
    public max_num_comment_pages -> integer0
    public is_single -> boolFALSE
    public is_preview -> boolFALSE
    public is_page -> boolFALSE
    public is_archive -> boolTRUE
    public is_date -> boolFALSE
    public is_year -> boolFALSE
    public is_month -> boolFALSE
    public is_day -> boolFALSE
    public is_time -> boolFALSE
    public is_author -> boolFALSE
    public is_category -> boolFALSE
    public is_tag -> boolFALSE
    public is_tax -> boolFALSE
    public is_search -> boolFALSE
    public is_feed -> boolFALSE
    public is_comment_feed -> boolFALSE
    public is_trackback -> boolFALSE
    public is_home -> boolFALSE
    public is_privacy_policy -> boolFALSE
    public is_404 -> boolFALSE
    public is_embed -> boolFALSE
    public is_paged -> boolFALSE
    public is_admin -> boolFALSE
    public is_attachment -> boolFALSE
    public is_singular -> boolFALSE
    public is_robots -> boolFALSE
    public is_favicon -> boolFALSE
    public is_posts_page -> boolFALSE
    public is_post_type_archive -> boolTRUE
    private query_vars_hash -> string(32) "4989f5407db7875eab4af2344196bc44"
    private query_vars_changed -> boolTRUE
    public thumbnails_cached -> boolFALSE
    private stopwords -> NULL
    →
    private compat_fields -> array(2)
    string(15) "query_vars_hash"
    string(18) "query_vars_changed"
    →
    private compat_methods -> array(2)
    string(16) "init_query_flags"
    string(15) "parse_tax_query"
    public queried_object -> NULL
    public queried_object_id -> NULL
    public comments -> NULL
    public comment -> NULL
  • →
    public __call($name, $arguments) -> mixed|false Return value of the callback, false otherwise.
    Make 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:3617
    →
    public __construct($query = "")
    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:3574
    →
    public __get($name) -> mixed Property.
    Make 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:3588
    →
    public __isset($name) -> bool Whether the property is set.
    Make 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:3602
    →
    public fill_query_vars($array) -> array Complete query variables with undefined ones filled in empty.
    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 $array Defined query variables.
    @return array Complete query variables with undefined ones filled in empty.
    
    Defined in <ROOT>wp-includes/class-wp-query.php:542
    →
    public generate_postdata($post) -> array|false Elements of post or false on failure.
    Generate 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:4335
    →
    public get($query_var, $default = "") -> mixed Contents of the query variable.
    Retrieves the value of a query variable.
    
    @since 1.5.0
    @since 3.9.0 The `$default` argument was introduced.
    
    @param string $query_var Query variable key.
    @param mixed  $default   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:1736
    →
    public get_posts() -> WP_Post[]|int[] Array of post objects or post IDs.
    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:1768
    →
    public get_queried_object() -> WP_Term|WP_Post_Type|WP_Post|WP_User|null The queried object.
    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:3479
    →
    public get_queried_object_id() -> int
    Retrieves the ID of the currently queried object.
    
    @since 1.5.0
    
    @return int
    
    Defined in <ROOT>wp-includes/class-wp-query.php:3553
    →
    public have_comments() -> bool True if comments are available, false if no more comments.
    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:3429
    →
    public have_posts() -> bool True if posts are available, false if end of the loop.
    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:3342
    →
    public init()
    Initiates object properties and sets default values.
    
    @since 1.5.0
    
    Defined in <ROOT>wp-includes/class-wp-query.php:502
    →
    public is_404() -> bool Whether the query is a 404 error.
    Is the query 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:4239
    →
    public is_archive() -> bool Whether the query is for an existing archive page.
    Is the query 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:3641
    →
    public is_attachment($attachment = "") -> bool Whether the query is for an existing attachment page.
    Is the query 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:3677
    →
    public is_author($author = "") -> bool Whether the query is for an existing author archive page.
    Is the query 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:3712
    →
    public is_category($category = "") -> bool Whether the query is for an existing category archive page.
    Is the query 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:3748
    →
    public is_comment_feed() -> bool Whether the query is for a comments feed.
    Is the query 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:3929
    →
    public is_comments_popup() -> false Always returns false.
    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:3872
    →
    public is_date() -> bool Whether the query is for an existing date archive.
    Is the query 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:3885
    →
    public is_day() -> bool Whether the query is for an existing day archive.
    Is the query 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:3896
    →
    public is_embed() -> bool Whether the query is for an embedded post.
    Is the query 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:4250
    →
    public is_favicon() -> bool Whether the query is for the favicon.ico file.
    Is the query 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:4106
    →
    public is_feed($feeds = "") -> bool Whether the query is for a feed.
    Is the query 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:3909
    →
    public is_front_page() -> bool Whether the query is for the front page of the site.
    Is the query 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:3949
    →
    public is_home() -> bool Whether the query is for the blog homepage.
    Is the query 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:3978
    →
    public is_main_query() -> bool Whether the query is the main query.
    Is the query the main query?
    
    @since 3.3.0
    
    @global WP_Query $wp_query WordPress Query object.
    
    @return bool Whether the query is the main query.
    
    Defined in <ROOT>wp-includes/class-wp-query.php:4263
    →
    public is_month() -> bool Whether the query is for an existing month archive.
    Is the query 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:4012
    →
    public is_page($page = "") -> bool Whether the query is for an existing single page.
    Is the query 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:4031
    →
    public is_paged() -> bool Whether the query is for a paged result.
    Is the query 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:4073
    →
    public is_post_type_archive($post_types = "") -> bool Whether the query is for an existing post type archive page.
    Is the query 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:3654
    →
    public is_preview() -> bool Whether the query is for a post or page preview.
    Is the query 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:4084
    →
    public is_privacy_policy() -> bool Whether the query is for the Privacy Policy page.
    Is the query 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:3995
    →
    public is_robots() -> bool Whether the query is for the robots.txt file.
    Is the query 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:4095
    →
    public is_search() -> bool Whether the query is for a search.
    Is the query 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:4117
    →
    public is_single($post = "") -> bool Whether the query is for an existing single post.
    Is the query 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:4138
    →
    public is_singular($post_types = "") -> bool Whether the query is for an existing single post
    Is the query 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:4189
    →
    public is_tag($tag = "") -> bool Whether the query is for an existing tag archive page.
    Is the query 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:3784
    →
    public is_tax($taxonomy = "", $term = "") -> bool Whether the query is for an existing custom taxonomy archive page.
    Is the query 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 array $wp_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:3830
    →
    public is_time() -> bool Whether the query is for a specific time.
    Is the query 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:4206
    →
    public is_trackback() -> bool Whether the query is for a trackback endpoint call.
    Is the query 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:4217
    →
    public is_year() -> bool Whether the query is for an existing year archive.
    Is the query 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:4228
    →
    public lazyload_comment_meta($check, $comment_id) -> mixed
    Lazyload comment meta for comments in the loop.
    
    @since 4.4.0
    @deprecated 4.5.0 See wp_queue_comments_for_comment_meta_lazyload().
    
    @param mixed $check
    @param int   $comment_id
    @return mixed
    
    Defined in <ROOT>wp-includes/class-wp-query.php:4458
    →
    public lazyload_term_meta($check, $term_id) -> mixed
    Lazyload 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:4443
    →
    public next_comment() -> WP_Comment Comment object.
    Iterate current comment index and return WP_Comment object.
    
    @since 2.2.0
    
    @return WP_Comment Comment object.
    
    Defined in <ROOT>wp-includes/class-wp-query.php:3390
    →
    public next_post() -> WP_Post Next post.
    Set 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:3295
    →
    public parse_query($query = "")
    Parse a query string and set 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.
    
    @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 1-12. Default empty.
    @type string       $meta_compare            Comparison operator to test the 'meta_value'.
    @type string       $meta_compare_key        Comparison operator to test the 'meta_key'.
    @type string       $meta_key                Custom field key.
    @type array        $meta_query              An associative array of WP_Meta_Query arguments. See WP_Meta_Query.
    @type string       $meta_value              Custom field value.
    @type int          $meta_value_num          Custom field value number.
    @type string       $meta_type_key           Cast for 'meta_key'. See WP_Meta_Query::construct().
    @type int          $menu_order              The menu order of the posts.
    @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', and 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|array $post_type               A post type slug (string) or array of post type slugs.
    Default 'any' if using 'tax_query'.
    @type string|array $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 int          $second                  Second of the minute. Default empty. Accepts numbers 0-60.
    @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         $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:746
    →
    public parse_query_vars()
    Reparse the query vars.
    
    @since 1.5.0
    
    Defined in <ROOT>wp-includes/class-wp-query.php:529
    →
    public parse_tax_query(&$q)
    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:1095
    →
    public query($query) -> WP_Post[]|int[] Array of post objects or post IDs.
    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:3461
    →
    public reset_postdata()
    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:4426
    →
    public rewind_comments()
    Rewind the comments, resets the comment index and comment to first.
    
    @since 2.2.0
    
    Defined in <ROOT>wp-includes/class-wp-query.php:3444
    →
    public rewind_posts()
    Rewind the posts and reset post index.
    
    @since 1.5.0
    
    Defined in <ROOT>wp-includes/class-wp-query.php:3376
    →
    public set($query_var, $value)
    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:1752
    →
    public set_404()
    Sets the 404 property and saves whether query is feed.
    
    @since 2.0.0
    
    Defined in <ROOT>wp-includes/class-wp-query.php:1708
    →
    public setup_postdata($post) -> true True when finished.
    Set 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:4287
    →
    public the_comment()
    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:3405
    →
    public the_post()
    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:3314
    →
    protected get_search_stopwords() -> string[] Stopwords.
    Retrieve stopwords used when parsing search terms.
    
    @since 3.7.0
    
    @return string[] Stopwords.
    
    Defined in <ROOT>wp-includes/class-wp-query.php:1459
    →
    protected parse_order($order) -> string The sanitized 'order' query variable.
    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:1691
    →
    protected parse_orderby($orderby) -> string|false Table-prefixed value to used in the ORDER clause. False otherwise.
    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:1563
    →
    protected parse_search(&$q) -> string WHERE clause.
    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:1337
    →
    protected parse_search_order(&$q) -> string ORDER BY clause.
    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:1506
    →
    protected parse_search_terms($terms) -> string[] Terms that are not stopwords.
    Check 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:1423
    →
    private init_query_flags()
    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:466
    →
    private set_found_posts($q, $limits)
    Set 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:3240
→
Called from <ROOT>wp-content/themes/ross/inc/template-tags.php:30 [huku_paging_nav()]
  1. <ROOT>wp-content/themes/ross/archive.php:93 [huku_paging_nav()]
  2. <ROOT>wp-includes/template-loader.php:106
  3. <ROOT>wp-blog-header.php:19
  4. <ROOT>index.php:17
← Previous Post
Newer posts →
  • Datenschutz
  • Impressum