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
|
|
|
/**
|
|
|
|
* {@internal Missing Short Description}}
|
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.0.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
|
|
|
* @param unknown_type $cat_name
|
|
|
|
* @return unknown
|
|
|
|
*/
|
2009-04-10 22:58:25 +02:00
|
|
|
function category_exists($cat_name, $parent = 0) {
|
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
|
|
|
/**
|
|
|
|
* {@internal Missing Short Description}}
|
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.0.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
|
|
|
* @param unknown_type $id
|
|
|
|
* @return unknown
|
|
|
|
*/
|
2007-05-25 09:16:21 +02:00
|
|
|
function get_category_to_edit( $id ) {
|
2007-08-24 20:41:01 +02:00
|
|
|
$category = get_category( $id, OBJECT, 'edit' );
|
2007-05-25 09:16:21 +02:00
|
|
|
return $category;
|
|
|
|
}
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
|
|
|
* {@internal Missing Short Description}}
|
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.0.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
|
|
|
* @param unknown_type $cat_name
|
|
|
|
* @param unknown_type $parent
|
|
|
|
* @return unknown
|
|
|
|
*/
|
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
|
|
|
/**
|
|
|
|
* {@internal Missing Short Description}}
|
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.0.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
|
|
|
* @param unknown_type $categories
|
|
|
|
* @param unknown_type $post_id
|
|
|
|
* @return unknown
|
|
|
|
*/
|
2007-05-25 09:16:21 +02:00
|
|
|
function wp_create_categories($categories, $post_id = '') {
|
|
|
|
$cat_ids = array ();
|
|
|
|
foreach ($categories as $category) {
|
|
|
|
if ($id = category_exists($category))
|
|
|
|
$cat_ids[] = $id;
|
|
|
|
else
|
|
|
|
if ($id = wp_create_category($category))
|
|
|
|
$cat_ids[] = $id;
|
|
|
|
}
|
|
|
|
|
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
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
2010-02-28 04:18:40 +01:00
|
|
|
* @param mixed $catarr See defaults below. Set 'cat_ID' to a non-zero value to update an existing category. The 'taxonomy' key was added in 3.0.0.
|
|
|
|
* @param bool $wp_error Optional, since 2.5.0. Set this to true if the caller handles WP_Error return values.
|
2011-12-14 00:45:31 +01:00
|
|
|
* @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
|
|
|
*/
|
2007-11-12 20:12:49 +01:00
|
|
|
function wp_insert_category($catarr, $wp_error = false) {
|
2010-01-11 20:27:44 +01:00
|
|
|
$cat_defaults = array('cat_ID' => 0, 'taxonomy' => 'category', 'cat_name' => '', 'category_description' => '', 'category_nicename' => '', 'category_parent' => '');
|
2008-11-03 00:52:49 +01:00
|
|
|
$catarr = wp_parse_args($catarr, $cat_defaults);
|
2007-06-15 19:30:37 +02:00
|
|
|
extract($catarr, EXTR_SKIP);
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2008-03-20 21:19:25 +01:00
|
|
|
if ( trim( $cat_name ) == '' ) {
|
|
|
|
if ( ! $wp_error )
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return new WP_Error( 'cat_name', __('You did not enter a category name.') );
|
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
|
|
|
$cat_ID = (int) $cat_ID;
|
|
|
|
|
|
|
|
// Are we updating or creating?
|
|
|
|
if ( !empty ($cat_ID) )
|
|
|
|
$update = true;
|
|
|
|
else
|
|
|
|
$update = false;
|
|
|
|
|
|
|
|
$name = $cat_name;
|
|
|
|
$description = $category_description;
|
|
|
|
$slug = $category_nicename;
|
|
|
|
$parent = $category_parent;
|
|
|
|
|
|
|
|
$parent = (int) $parent;
|
2008-03-23 02:10:46 +01:00
|
|
|
if ( $parent < 0 )
|
|
|
|
$parent = 0;
|
|
|
|
|
2012-01-04 23:44:19 +01:00
|
|
|
if ( empty( $parent ) || ! term_exists( $parent, $taxonomy ) || ( $cat_ID && term_is_ancestor_of( $cat_ID, $parent, $taxonomy ) ) )
|
2007-05-25 09:16:21 +02:00
|
|
|
$parent = 0;
|
|
|
|
|
2007-06-06 18:12:02 +02:00
|
|
|
$args = compact('name', 'slug', 'parent', 'description');
|
2007-05-25 09:16:21 +02:00
|
|
|
|
|
|
|
if ( $update )
|
2010-01-11 20:27:44 +01:00
|
|
|
$cat_ID = wp_update_term($cat_ID, $taxonomy, $args);
|
2007-05-25 09:16:21 +02:00
|
|
|
else
|
2010-01-11 20:27:44 +01:00
|
|
|
$cat_ID = wp_insert_term($cat_name, $taxonomy, $args);
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2007-11-12 20:12:49 +01:00
|
|
|
if ( is_wp_error($cat_ID) ) {
|
|
|
|
if ( $wp_error )
|
|
|
|
return $cat_ID;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
2007-09-22 20:01:08 +02:00
|
|
|
|
2007-05-25 09:16:21 +02:00
|
|
|
return $cat_ID['term_id'];
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
$category = get_category($cat_ID, ARRAY_A);
|
|
|
|
|
|
|
|
// Escape data pulled from DB.
|
|
|
|
$category = add_magic_quotes($category);
|
|
|
|
|
|
|
|
// 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
|
|
|
/**
|
|
|
|
* {@internal Missing Short Description}}
|
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.3.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
|
|
|
* @param unknown_type $tag_name
|
|
|
|
* @return unknown
|
|
|
|
*/
|
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
|
|
|
/**
|
|
|
|
* {@internal Missing Short Description}}
|
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.3.0
|
2008-10-02 03:03:26 +02:00
|
|
|
*
|
|
|
|
* @param unknown_type $tag_name
|
|
|
|
* @return unknown
|
|
|
|
*/
|
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
|
|
|
/**
|
|
|
|
* {@internal Missing Short Description}}
|
|
|
|
*
|
2010-12-20 10:25:21 +01:00
|
|
|
* @since 2.3.0
|
2010-11-22 18:17:26 +01:00
|
|
|
*
|
|
|
|
* @param unknown_type $post_id
|
|
|
|
* @return unknown
|
|
|
|
*/
|
|
|
|
function get_tags_to_edit( $post_id, $taxonomy = 'post_tag' ) {
|
|
|
|
return get_terms_to_edit( $post_id, $taxonomy);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@internal Missing Short Description}}
|
|
|
|
*
|
2010-12-20 10:25:21 +01:00
|
|
|
* @since 2.8.0
|
2010-11-22 18:17:26 +01:00
|
|
|
*
|
|
|
|
* @param unknown_type $post_id
|
|
|
|
* @return unknown
|
|
|
|
*/
|
|
|
|
function get_terms_to_edit( $post_id, $taxonomy = 'post_tag' ) {
|
|
|
|
$post_id = (int) $post_id;
|
|
|
|
if ( !$post_id )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
$tags = wp_get_post_terms($post_id, $taxonomy, array());
|
|
|
|
|
|
|
|
if ( !$tags )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if ( is_wp_error($tags) )
|
|
|
|
return $tags;
|
|
|
|
|
|
|
|
foreach ( $tags as $tag )
|
|
|
|
$tag_names[] = $tag->name;
|
|
|
|
$tags_to_edit = join( ',', $tag_names );
|
|
|
|
$tags_to_edit = esc_attr( $tags_to_edit );
|
|
|
|
$tags_to_edit = apply_filters( 'terms_to_edit', $tags_to_edit, $taxonomy );
|
|
|
|
|
|
|
|
return $tags_to_edit;
|
|
|
|
}
|
|
|
|
|
2008-12-18 20:12:26 +01:00
|
|
|
/**
|
|
|
|
* {@internal Missing Short Description}}
|
|
|
|
*
|
2010-12-01 20:24:38 +01:00
|
|
|
* @since 2.8.0
|
2008-12-18 20:12:26 +01:00
|
|
|
*
|
|
|
|
* @param unknown_type $tag_name
|
|
|
|
* @return unknown
|
|
|
|
*/
|
|
|
|
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
|
|
|
}
|