2007-05-25 09:16:21 +02:00
|
|
|
<?php
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
|
|
|
* WordPress Taxonomy Administration API.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Administration
|
|
|
|
*/
|
2007-05-25 09:16:21 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Category
|
|
|
|
//
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2015-01-11 02:26:27 +01:00
|
|
|
* Check whether a category exists.
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.0.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2015-01-11 02:26:27 +01:00
|
|
|
* @see term_exists()
|
|
|
|
*
|
|
|
|
* @param int|string $cat_name Category name.
|
|
|
|
* @param int $parent Optional. ID of parent term.
|
|
|
|
* @return mixed
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
2015-01-11 02:26:27 +01:00
|
|
|
function category_exists( $cat_name, $parent = null ) {
|
2010-06-11 17:53:41 +02:00
|
|
|
$id = term_exists($cat_name, 'category', $parent);
|
2007-06-02 04:53:09 +02:00
|
|
|
if ( is_array($id) )
|
|
|
|
$id = $id['term_id'];
|
|
|
|
return $id;
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2015-01-29 12:34:22 +01:00
|
|
|
* Get category object for given ID and 'edit' filter context.
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.0.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2014-11-03 06:50:23 +01:00
|
|
|
* @param int $id
|
|
|
|
* @return object
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
2007-05-25 09:16:21 +02:00
|
|
|
function get_category_to_edit( $id ) {
|
2013-10-02 21:59:10 +02:00
|
|
|
$category = get_term( $id, 'category', OBJECT, 'edit' );
|
|
|
|
_make_cat_compat( $category );
|
2007-05-25 09:16:21 +02:00
|
|
|
return $category;
|
|
|
|
}
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2015-01-29 12:34:22 +01:00
|
|
|
* Add a new category to the database if it does not already exist.
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.0.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2014-11-03 06:50:23 +01:00
|
|
|
* @param int|string $cat_name
|
|
|
|
* @param int $parent
|
|
|
|
* @return int|WP_Error
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
2008-01-10 10:39:35 +01:00
|
|
|
function wp_create_category( $cat_name, $parent = 0 ) {
|
2010-01-08 18:58:13 +01:00
|
|
|
if ( $id = category_exists($cat_name, $parent) )
|
2007-05-25 09:16:21 +02:00
|
|
|
return $id;
|
|
|
|
|
2008-01-10 10:39:35 +01:00
|
|
|
return wp_insert_category( array('cat_name' => $cat_name, 'category_parent' => $parent) );
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2014-07-03 21:22:15 +02:00
|
|
|
* Create categories for the given post.
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.0.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2014-07-03 21:22:15 +02:00
|
|
|
* @param array $categories List of categories to create.
|
|
|
|
* @param int $post_id Optional. The post ID. Default empty.
|
|
|
|
* @return List of categories to create for the given post.
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
2014-07-03 21:22:15 +02:00
|
|
|
function wp_create_categories( $categories, $post_id = '' ) {
|
2007-05-25 09:16:21 +02:00
|
|
|
$cat_ids = array ();
|
2015-01-08 08:05:25 +01:00
|
|
|
foreach ( $categories as $category ) {
|
|
|
|
if ( $id = category_exists( $category ) ) {
|
2007-05-25 09:16:21 +02:00
|
|
|
$cat_ids[] = $id;
|
2015-01-08 08:05:25 +01:00
|
|
|
} elseif ( $id = wp_create_category( $category ) ) {
|
|
|
|
$cat_ids[] = $id;
|
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
2010-01-24 12:00:27 +01:00
|
|
|
if ( $post_id )
|
2007-05-25 09:16:21 +02:00
|
|
|
wp_set_post_categories($post_id, $cat_ids);
|
|
|
|
|
|
|
|
return $cat_ids;
|
|
|
|
}
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2010-02-28 04:18:40 +01:00
|
|
|
* Updates an existing Category or creates a new Category.
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2010-02-28 04:18:40 +01:00
|
|
|
* @since 2.0.0
|
2014-05-18 09:28:14 +02:00
|
|
|
* @since 2.5.0 $wp_error parameter was added.
|
|
|
|
* @since 3.0.0 The 'taxonomy' argument was added.
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2014-05-18 09:28:14 +02:00
|
|
|
* @param array $catarr {
|
|
|
|
* Array of arguments for inserting a new category.
|
|
|
|
*
|
2015-09-30 06:13:48 +02:00
|
|
|
* @type int $cat_ID Category ID. A non-zero value updates an existing category.
|
2014-05-18 09:28:14 +02:00
|
|
|
* Default 0.
|
2015-09-30 06:13:48 +02:00
|
|
|
* @type string $taxonomy Taxonomy slug. Default 'category'.
|
2015-07-13 14:59:25 +02:00
|
|
|
* @type string $cat_name Category name. Default empty.
|
2014-05-18 09:28:14 +02:00
|
|
|
* @type string $category_description Category description. Default empty.
|
|
|
|
* @type string $category_nicename Category nice (display) name. Default empty.
|
|
|
|
* @type int|string $category_parent Category parent ID. Default empty.
|
|
|
|
* }
|
|
|
|
* @param bool $wp_error Optional. Default false.
|
|
|
|
* @return int|object The ID number of the new or updated Category on success. Zero or a WP_Error on failure,
|
|
|
|
* depending on param $wp_error.
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
2014-05-13 05:27:13 +02:00
|
|
|
function wp_insert_category( $catarr, $wp_error = false ) {
|
|
|
|
$cat_defaults = array( 'cat_ID' => 0, 'taxonomy' => 'category', 'cat_name' => '', 'category_description' => '', 'category_nicename' => '', 'category_parent' => '' );
|
|
|
|
$catarr = wp_parse_args( $catarr, $cat_defaults );
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2014-05-13 05:27:13 +02:00
|
|
|
if ( trim( $catarr['cat_name'] ) == '' ) {
|
|
|
|
if ( ! $wp_error ) {
|
2008-03-20 21:19:25 +01:00
|
|
|
return 0;
|
2014-05-13 05:27:13 +02:00
|
|
|
} else {
|
|
|
|
return new WP_Error( 'cat_name', __( 'You did not enter a category name.' ) );
|
|
|
|
}
|
2008-03-20 21:19:25 +01:00
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2014-05-13 05:27:13 +02:00
|
|
|
$catarr['cat_ID'] = (int) $catarr['cat_ID'];
|
2007-05-25 09:16:21 +02:00
|
|
|
|
|
|
|
// Are we updating or creating?
|
2014-05-13 05:27:13 +02:00
|
|
|
$update = ! empty ( $catarr['cat_ID'] );
|
|
|
|
|
|
|
|
$name = $catarr['cat_name'];
|
|
|
|
$description = $catarr['category_description'];
|
|
|
|
$slug = $catarr['category_nicename'];
|
|
|
|
$parent = (int) $catarr['category_parent'];
|
|
|
|
if ( $parent < 0 ) {
|
2008-03-23 02:10:46 +01:00
|
|
|
$parent = 0;
|
2014-05-13 05:27:13 +02:00
|
|
|
}
|
2008-03-23 02:10:46 +01:00
|
|
|
|
2014-05-13 05:27:13 +02:00
|
|
|
if ( empty( $parent )
|
|
|
|
|| ! term_exists( $parent, $catarr['taxonomy'] )
|
|
|
|
|| ( $catarr['cat_ID'] && term_is_ancestor_of( $catarr['cat_ID'], $parent, $catarr['taxonomy'] ) ) ) {
|
2007-05-25 09:16:21 +02:00
|
|
|
$parent = 0;
|
2014-05-13 05:27:13 +02:00
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2007-06-06 18:12:02 +02:00
|
|
|
$args = compact('name', 'slug', 'parent', 'description');
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2014-05-13 05:27:13 +02:00
|
|
|
if ( $update ) {
|
|
|
|
$catarr['cat_ID'] = wp_update_term( $catarr['cat_ID'], $catarr['taxonomy'], $args );
|
|
|
|
} else {
|
|
|
|
$catarr['cat_ID'] = wp_insert_term( $catarr['cat_name'], $catarr['taxonomy'], $args );
|
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2014-05-13 05:27:13 +02:00
|
|
|
if ( is_wp_error( $catarr['cat_ID'] ) ) {
|
|
|
|
if ( $wp_error ) {
|
|
|
|
return $catarr['cat_ID'];
|
|
|
|
} else {
|
2007-11-12 20:12:49 +01:00
|
|
|
return 0;
|
2014-05-13 05:27:13 +02:00
|
|
|
}
|
2007-11-12 20:12:49 +01:00
|
|
|
}
|
2014-05-13 05:27:13 +02:00
|
|
|
return $catarr['cat_ID']['term_id'];
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2010-02-28 04:18:40 +01:00
|
|
|
* Aliases wp_insert_category() with minimal args.
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2010-02-28 04:18:40 +01:00
|
|
|
* If you want to update only some fields of an existing category, call this
|
|
|
|
* function with only the new values set inside $catarr.
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2010-02-28 04:18:40 +01:00
|
|
|
* @since 2.0.0
|
|
|
|
*
|
2011-12-14 00:45:31 +01:00
|
|
|
* @param array $catarr The 'cat_ID' value is required. All other keys are optional.
|
2010-02-28 04:18:40 +01:00
|
|
|
* @return int|bool The ID number of the new or updated Category on success. Zero or FALSE on failure.
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
2007-05-25 09:16:21 +02:00
|
|
|
function wp_update_category($catarr) {
|
|
|
|
$cat_ID = (int) $catarr['cat_ID'];
|
|
|
|
|
2008-11-03 00:52:49 +01:00
|
|
|
if ( isset($catarr['category_parent']) && ($cat_ID == $catarr['category_parent']) )
|
2007-05-25 09:16:21 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// First, get all of the original fields
|
2013-10-02 21:59:10 +02:00
|
|
|
$category = get_term( $cat_ID, 'category', ARRAY_A );
|
|
|
|
_make_cat_compat( $category );
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2013-03-01 17:28:40 +01:00
|
|
|
// Escape data pulled from DB.
|
2013-03-01 18:00:25 +01:00
|
|
|
$category = wp_slash($category);
|
2013-03-01 17:28:40 +01:00
|
|
|
|
2007-05-25 09:16:21 +02:00
|
|
|
// Merge old and new fields with new fields overwriting old ones.
|
|
|
|
$catarr = array_merge($category, $catarr);
|
|
|
|
|
|
|
|
return wp_insert_category($catarr);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Tags
|
|
|
|
//
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2015-01-29 12:34:22 +01:00
|
|
|
* Check whether a post tag with a given name exists.
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.3.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2014-11-03 06:50:23 +01:00
|
|
|
* @param int|string $tag_name
|
|
|
|
* @return mixed
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
2007-05-25 09:16:21 +02:00
|
|
|
function tag_exists($tag_name) {
|
2010-06-11 17:53:41 +02:00
|
|
|
return term_exists($tag_name, 'post_tag');
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2015-01-29 12:34:22 +01:00
|
|
|
* Add a new tag to the database if it does not already exist.
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.3.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2014-11-03 06:50:23 +01:00
|
|
|
* @param int|string $tag_name
|
|
|
|
* @return array|WP_Error
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
2007-05-25 09:16:21 +02:00
|
|
|
function wp_create_tag($tag_name) {
|
2008-12-18 20:12:26 +01:00
|
|
|
return wp_create_term( $tag_name, 'post_tag');
|
|
|
|
}
|
|
|
|
|
2010-11-22 18:17:26 +01:00
|
|
|
/**
|
2015-01-29 12:34:22 +01:00
|
|
|
* Get comma-separated list of tags available to edit.
|
2010-11-22 18:17:26 +01:00
|
|
|
*
|
2010-12-20 10:25:21 +01:00
|
|
|
* @since 2.3.0
|
2010-11-22 18:17:26 +01:00
|
|
|
*
|
2015-01-29 12:34:22 +01:00
|
|
|
* @param int $post_id
|
|
|
|
* @param string $taxonomy Optional. The taxonomy for which to retrieve terms. Default 'post_tag'.
|
2014-11-03 06:50:23 +01:00
|
|
|
* @return string|bool|WP_Error
|
2010-11-22 18:17:26 +01:00
|
|
|
*/
|
|
|
|
function get_tags_to_edit( $post_id, $taxonomy = 'post_tag' ) {
|
|
|
|
return get_terms_to_edit( $post_id, $taxonomy);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-01-29 12:34:22 +01:00
|
|
|
* Get comma-separated list of terms available to edit for the given post ID.
|
2010-11-22 18:17:26 +01:00
|
|
|
*
|
2010-12-20 10:25:21 +01:00
|
|
|
* @since 2.8.0
|
2010-11-22 18:17:26 +01:00
|
|
|
*
|
2015-01-29 12:34:22 +01:00
|
|
|
* @param int $post_id
|
|
|
|
* @param string $taxonomy Optional. The taxonomy for which to retrieve terms. Default 'post_tag'.
|
2014-11-03 06:50:23 +01:00
|
|
|
* @return string|bool|WP_Error
|
2010-11-22 18:17:26 +01:00
|
|
|
*/
|
|
|
|
function get_terms_to_edit( $post_id, $taxonomy = 'post_tag' ) {
|
|
|
|
$post_id = (int) $post_id;
|
|
|
|
if ( !$post_id )
|
|
|
|
return false;
|
|
|
|
|
2014-05-23 21:29:14 +02:00
|
|
|
$terms = get_object_term_cache( $post_id, $taxonomy );
|
|
|
|
if ( false === $terms ) {
|
|
|
|
$terms = wp_get_object_terms( $post_id, $taxonomy );
|
|
|
|
wp_cache_add( $post_id, $terms, $taxonomy . '_relationships' );
|
|
|
|
}
|
2010-11-22 18:17:26 +01:00
|
|
|
|
2014-05-23 21:29:14 +02:00
|
|
|
if ( ! $terms ) {
|
2010-11-22 18:17:26 +01:00
|
|
|
return false;
|
2014-05-19 07:04:16 +02:00
|
|
|
}
|
2014-05-23 21:29:14 +02:00
|
|
|
if ( is_wp_error( $terms ) ) {
|
|
|
|
return $terms;
|
2014-05-19 07:04:16 +02:00
|
|
|
}
|
2014-05-23 21:29:14 +02:00
|
|
|
$term_names = array();
|
|
|
|
foreach ( $terms as $term ) {
|
|
|
|
$term_names[] = $term->name;
|
2014-05-19 07:04:16 +02:00
|
|
|
}
|
|
|
|
|
2014-05-23 21:29:14 +02:00
|
|
|
$terms_to_edit = esc_attr( join( ',', $term_names ) );
|
2014-03-24 04:14:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter the comma-separated list of terms available to edit.
|
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*
|
|
|
|
* @see get_terms_to_edit()
|
|
|
|
*
|
2014-05-23 21:29:14 +02:00
|
|
|
* @param array $terms_to_edit An array of terms.
|
2014-03-24 04:14:15 +01:00
|
|
|
* @param string $taxonomy The taxonomy for which to retrieve terms. Default 'post_tag'.
|
|
|
|
*/
|
2014-05-23 21:29:14 +02:00
|
|
|
$terms_to_edit = apply_filters( 'terms_to_edit', $terms_to_edit, $taxonomy );
|
2010-11-22 18:17:26 +01:00
|
|
|
|
2014-05-23 21:29:14 +02:00
|
|
|
return $terms_to_edit;
|
2010-11-22 18:17:26 +01:00
|
|
|
}
|
|
|
|
|
2008-12-18 20:12:26 +01:00
|
|
|
/**
|
2015-01-29 12:34:22 +01:00
|
|
|
* Add a new term to the database if it does not already exist.
|
2008-12-18 20:12:26 +01:00
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.8.0
|
2008-12-18 20:12:26 +01:00
|
|
|
*
|
2014-11-03 06:50:23 +01:00
|
|
|
* @param int|string $tag_name
|
2015-01-29 12:34:22 +01:00
|
|
|
* @param string $taxonomy Optional. The taxonomy for which to retrieve terms. Default 'post_tag'.
|
2014-11-03 06:50:23 +01:00
|
|
|
* @return array|WP_Error
|
2008-12-18 20:12:26 +01:00
|
|
|
*/
|
|
|
|
function wp_create_term($tag_name, $taxonomy = 'post_tag') {
|
2010-06-11 17:53:41 +02:00
|
|
|
if ( $id = term_exists($tag_name, $taxonomy) )
|
2007-05-25 09:16:21 +02:00
|
|
|
return $id;
|
|
|
|
|
2008-12-18 20:12:26 +01:00
|
|
|
return wp_insert_term($tag_name, $taxonomy);
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|