PageRenderTime 27ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-includes/category.php

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