[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/ -> category.php (source)

   1  <?php
   2  /**
   3   * Taxonomy API: Core category-specific functionality
   4   *
   5   * @package WordPress
   6   * @subpackage Taxonomy
   7   */
   8  
   9  /**
  10   * Retrieves a list of category objects.
  11   *
  12   * If you set the 'taxonomy' argument to 'link_category', the link categories
  13   * will be returned instead.
  14   *
  15   * @since 2.1.0
  16   *
  17   * @see get_terms() Type of arguments that can be changed.
  18   *
  19   * @param string|array $args {
  20   *     Optional. Arguments to retrieve categories. See get_terms() for additional options.
  21   *
  22   *     @type string $taxonomy Taxonomy to retrieve terms for. Default 'category'.
  23   * }
  24   * @return array List of category objects.
  25   */
  26  function get_categories( $args = '' ) {
  27      $defaults = array( 'taxonomy' => 'category' );
  28      $args     = wp_parse_args( $args, $defaults );
  29  
  30      /**
  31       * Filters the taxonomy used to retrieve terms when calling get_categories().
  32       *
  33       * @since 2.7.0
  34       *
  35       * @param string $taxonomy Taxonomy to retrieve terms from.
  36       * @param array  $args     An array of arguments. See get_terms().
  37       */
  38      $args['taxonomy'] = apply_filters( 'get_categories_taxonomy', $args['taxonomy'], $args );
  39  
  40      // Back compat.
  41      if ( isset( $args['type'] ) && 'link' === $args['type'] ) {
  42          _deprecated_argument(
  43              __FUNCTION__,
  44              '3.0.0',
  45              sprintf(
  46                  /* translators: 1: "type => link", 2: "taxonomy => link_category" */
  47                  __( '%1$s is deprecated. Use %2$s instead.' ),
  48                  '<code>type => link</code>',
  49                  '<code>taxonomy => link_category</code>'
  50              )
  51          );
  52          $args['taxonomy'] = 'link_category';
  53      }
  54  
  55      $categories = get_terms( $args );
  56  
  57      if ( is_wp_error( $categories ) ) {
  58          $categories = array();
  59      } else {
  60          $categories = (array) $categories;
  61          foreach ( array_keys( $categories ) as $k ) {
  62              _make_cat_compat( $categories[ $k ] );
  63          }
  64      }
  65  
  66      return $categories;
  67  }
  68  
  69  /**
  70   * Retrieves category data given a category ID or category object.
  71   *
  72   * If you pass the $category parameter an object, which is assumed to be the
  73   * category row object retrieved the database. It will cache the category data.
  74   *
  75   * If you pass $category an integer of the category ID, then that category will
  76   * be retrieved from the database, if it isn't already cached, and pass it back.
  77   *
  78   * If you look at get_term(), then both types will be passed through several
  79   * filters and finally sanitized based on the $filter parameter value.
  80   *
  81   * @since 1.5.1
  82   *
  83   * @param int|object $category Category ID or category row object.
  84   * @param string     $output   Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which
  85   *                             correspond to a WP_Term object, an associative array, or a numeric array,
  86   *                             respectively. Default OBJECT.
  87   * @param string     $filter   Optional. How to sanitize category fields. Default 'raw'.
  88   * @return WP_Term|array|WP_Error|null Category data in type defined by $output parameter.
  89   *                                     Returns a WP_Term object with backwards compatible property aliases filled in.
  90   *                                     WP_Error if $category is empty, null if it does not exist.
  91   */
  92  function get_category( $category, $output = OBJECT, $filter = 'raw' ) {
  93      $category = get_term( $category, 'category', $output, $filter );
  94  
  95      if ( is_wp_error( $category ) ) {
  96          return $category;
  97      }
  98  
  99      _make_cat_compat( $category );
 100  
 101      return $category;
 102  }
 103  
 104  /**
 105   * Retrieves a category based on URL containing the category slug.
 106   *
 107   * Breaks the $category_path parameter up to get the category slug.
 108   *
 109   * Tries to find the child path and will return it. If it doesn't find a
 110   * match, then it will return the first category matching slug, if $full_match,
 111   * is set to false. If it does not, then it will return null.
 112   *
 113   * It is also possible that it will return a WP_Error object on failure. Check
 114   * for it when using this function.
 115   *
 116   * @since 2.1.0
 117   *
 118   * @param string $category_path URL containing category slugs.
 119   * @param bool   $full_match    Optional. Whether full path should be matched.
 120   * @param string $output        Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which
 121   *                              correspond to a WP_Term object, an associative array, or a numeric array,
 122   *                              respectively. Default OBJECT.
 123   * @return WP_Term|array|WP_Error|null Type is based on $output value.
 124   */
 125  function get_category_by_path( $category_path, $full_match = true, $output = OBJECT ) {
 126      $category_path  = rawurlencode( urldecode( $category_path ) );
 127      $category_path  = str_replace( '%2F', '/', $category_path );
 128      $category_path  = str_replace( '%20', ' ', $category_path );
 129      $category_paths = '/' . trim( $category_path, '/' );
 130      $leaf_path      = sanitize_title( basename( $category_paths ) );
 131      $category_paths = explode( '/', $category_paths );
 132      $full_path      = '';
 133  
 134      foreach ( (array) $category_paths as $pathdir ) {
 135          $full_path .= ( '' !== $pathdir ? '/' : '' ) . sanitize_title( $pathdir );
 136      }
 137  
 138      $categories = get_terms(
 139          array(
 140              'taxonomy' => 'category',
 141              'get'      => 'all',
 142              'slug'     => $leaf_path,
 143          )
 144      );
 145  
 146      if ( empty( $categories ) ) {
 147          return null;
 148      }
 149  
 150      foreach ( $categories as $category ) {
 151          $path        = '/' . $leaf_path;
 152          $curcategory = $category;
 153  
 154          while ( ( 0 !== $curcategory->parent ) && ( $curcategory->parent !== $curcategory->term_id ) ) {
 155              $curcategory = get_term( $curcategory->parent, 'category' );
 156  
 157              if ( is_wp_error( $curcategory ) ) {
 158                  return $curcategory;
 159              }
 160  
 161              $path = '/' . $curcategory->slug . $path;
 162          }
 163  
 164          if ( $path === $full_path ) {
 165              $category = get_term( $category->term_id, 'category', $output );
 166              _make_cat_compat( $category );
 167  
 168              return $category;
 169          }
 170      }
 171  
 172      // If full matching is not required, return the first cat that matches the leaf.
 173      if ( ! $full_match ) {
 174          $category = get_term( reset( $categories )->term_id, 'category', $output );
 175          _make_cat_compat( $category );
 176  
 177          return $category;
 178      }
 179  
 180      return null;
 181  }
 182  
 183  /**
 184   * Retrieves a category object by category slug.
 185   *
 186   * @since 2.3.0
 187   *
 188   * @param string $slug The category slug.
 189   * @return object|false Category data object on success, false if not found.
 190   */
 191  function get_category_by_slug( $slug ) {
 192      $category = get_term_by( 'slug', $slug, 'category' );
 193  
 194      if ( $category ) {
 195          _make_cat_compat( $category );
 196      }
 197  
 198      return $category;
 199  }
 200  
 201  /**
 202   * Retrieves the ID of a category from its name.
 203   *
 204   * @since 1.0.0
 205   *
 206   * @param string $cat_name Category name.
 207   * @return int Category ID on success, 0 if the category doesn't exist.
 208   */
 209  function get_cat_ID( $cat_name ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
 210      $cat = get_term_by( 'name', $cat_name, 'category' );
 211  
 212      if ( $cat ) {
 213          return $cat->term_id;
 214      }
 215  
 216      return 0;
 217  }
 218  
 219  /**
 220   * Retrieves the name of a category from its ID.
 221   *
 222   * @since 1.0.0
 223   *
 224   * @param int $cat_id Category ID.
 225   * @return string Category name, or an empty string if the category doesn't exist.
 226   */
 227  function get_cat_name( $cat_id ) {
 228      $cat_id   = (int) $cat_id;
 229      $category = get_term( $cat_id, 'category' );
 230  
 231      if ( ! $category || is_wp_error( $category ) ) {
 232          return '';
 233      }
 234  
 235      return $category->name;
 236  }
 237  
 238  /**
 239   * Checks if a category is an ancestor of another category.
 240   *
 241   * You can use either an ID or the category object for both parameters.
 242   * If you use an integer, the category will be retrieved.
 243   *
 244   * @since 2.1.0
 245   *
 246   * @param int|object $cat1 ID or object to check if this is the parent category.
 247   * @param int|object $cat2 The child category.
 248   * @return bool Whether $cat2 is child of $cat1.
 249   */
 250  function cat_is_ancestor_of( $cat1, $cat2 ) {
 251      return term_is_ancestor_of( $cat1, $cat2, 'category' );
 252  }
 253  
 254  /**
 255   * Sanitizes category data based on context.
 256   *
 257   * @since 2.3.0
 258   *
 259   * @param object|array $category Category data.
 260   * @param string       $context  Optional. Default 'display'.
 261   * @return object|array Same type as $category with sanitized data for safe use.
 262   */
 263  function sanitize_category( $category, $context = 'display' ) {
 264      return sanitize_term( $category, 'category', $context );
 265  }
 266  
 267  /**
 268   * Sanitizes data in single category key field.
 269   *
 270   * @since 2.3.0
 271   *
 272   * @param string $field   Category key to sanitize.
 273   * @param mixed  $value   Category value to sanitize.
 274   * @param int    $cat_id  Category ID.
 275   * @param string $context What filter to use, 'raw', 'display', etc.
 276   * @return mixed Value after $value has been sanitized.
 277   */
 278  function sanitize_category_field( $field, $value, $cat_id, $context ) {
 279      return sanitize_term_field( $field, $value, $cat_id, 'category', $context );
 280  }
 281  
 282  /* Tags */
 283  
 284  /**
 285   * Retrieves all post tags.
 286   *
 287   * @since 2.3.0
 288   *
 289   * @param string|array $args {
 290   *     Optional. Arguments to retrieve tags. See get_terms() for additional options.
 291   *
 292   *     @type string $taxonomy Taxonomy to retrieve terms for. Default 'post_tag'.
 293   * }
 294   * @return WP_Term[]|int|WP_Error Array of 'post_tag' term objects, a count thereof,
 295   *                                or WP_Error if any of the taxonomies do not exist.
 296   */
 297  function get_tags( $args = '' ) {
 298      $defaults = array( 'taxonomy' => 'post_tag' );
 299      $args     = wp_parse_args( $args, $defaults );
 300  
 301      $tags = get_terms( $args );
 302  
 303      if ( empty( $tags ) ) {
 304          $tags = array();
 305      } else {
 306          /**
 307           * Filters the array of term objects returned for the 'post_tag' taxonomy.
 308           *
 309           * @since 2.3.0
 310           *
 311           * @param WP_Term[]|int|WP_Error $tags Array of 'post_tag' term objects, a count thereof,
 312           *                                     or WP_Error if any of the taxonomies do not exist.
 313           * @param array                  $args An array of arguments. See {@see get_terms()}.
 314           */
 315          $tags = apply_filters( 'get_tags', $tags, $args );
 316      }
 317  
 318      return $tags;
 319  }
 320  
 321  /**
 322   * Retrieves a post tag by tag ID or tag object.
 323   *
 324   * If you pass the $tag parameter an object, which is assumed to be the tag row
 325   * object retrieved from the database, it will cache the tag data.
 326   *
 327   * If you pass $tag an integer of the tag ID, then that tag will be retrieved
 328   * from the database, if it isn't already cached, and passed back.
 329   *
 330   * If you look at get_term(), both types will be passed through several filters
 331   * and finally sanitized based on the $filter parameter value.
 332   *
 333   * @since 2.3.0
 334   *
 335   * @param int|WP_Term|object $tag    A tag ID or object.
 336   * @param string             $output Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which
 337   *                                   correspond to a WP_Term object, an associative array, or a numeric array,
 338   *                                   respectively. Default OBJECT.
 339   * @param string             $filter Optional. How to sanitize tag fields. Default 'raw'.
 340   * @return WP_Term|array|WP_Error|null Tag data in type defined by $output parameter.
 341   *                                     WP_Error if $tag is empty, null if it does not exist.
 342   */
 343  function get_tag( $tag, $output = OBJECT, $filter = 'raw' ) {
 344      return get_term( $tag, 'post_tag', $output, $filter );
 345  }
 346  
 347  /* Cache */
 348  
 349  /**
 350   * Removes the category cache data based on ID.
 351   *
 352   * @since 2.1.0
 353   *
 354   * @param int $id Category ID
 355   */
 356  function clean_category_cache( $id ) {
 357      clean_term_cache( $id, 'category' );
 358  }
 359  
 360  /**
 361   * Updates category structure to old pre-2.3 from new taxonomy structure.
 362   *
 363   * This function was added for the taxonomy support to update the new category
 364   * structure with the old category one. This will maintain compatibility with
 365   * plugins and themes which depend on the old key or property names.
 366   *
 367   * The parameter should only be passed a variable and not create the array or
 368   * object inline to the parameter. The reason for this is that parameter is
 369   * passed by reference and PHP will fail unless it has the variable.
 370   *
 371   * There is no return value, because everything is updated on the variable you
 372   * pass to it. This is one of the features with using pass by reference in PHP.
 373   *
 374   * @since 2.3.0
 375   * @since 4.4.0 The `$category` parameter now also accepts a WP_Term object.
 376   * @access private
 377   *
 378   * @param array|object|WP_Term $category Category row object or array.
 379   */
 380  function _make_cat_compat( &$category ) {
 381      if ( is_object( $category ) && ! is_wp_error( $category ) ) {
 382          $category->cat_ID               = $category->term_id;
 383          $category->category_count       = $category->count;
 384          $category->category_description = $category->description;
 385          $category->cat_name             = $category->name;
 386          $category->category_nicename    = $category->slug;
 387          $category->category_parent      = $category->parent;
 388      } elseif ( is_array( $category ) && isset( $category['term_id'] ) ) {
 389          $category['cat_ID']               = &$category['term_id'];
 390          $category['category_count']       = &$category['count'];
 391          $category['category_description'] = &$category['description'];
 392          $category['cat_name']             = &$category['name'];
 393          $category['category_nicename']    = &$category['slug'];
 394          $category['category_parent']      = &$category['parent'];
 395      }
 396  }


Generated : Fri Sep 11 08:20:31 2026 Cross-referenced by PHPXref