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
|
|
|
|
|
|
|
//
|
2020-01-29 01:45:18 +01:00
|
|
|
// Category.
|
2007-05-25 09:16:21 +02:00
|
|
|
//
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2022-06-17 01:39:08 +02:00
|
|
|
* Checks 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()
|
|
|
|
*
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/taxonomy.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit:
* Renames the `$parent` parameter to `$category_parent` in `category_exists()` and `wp_create_category()`. This matches the category object property of the same name.
* Amends similar parameters in `dropdown_categories()` and `wp_dropdown_cats()` for consistency.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53216
git-svn-id: http://core.svn.wordpress.org/trunk@52805 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-19 15:51:08 +02:00
|
|
|
* @param int|string $cat_name Category name.
|
|
|
|
* @param int $category_parent Optional. ID of parent category.
|
2021-07-02 00:02:57 +02:00
|
|
|
* @return string|null Returns the category ID as a numeric string if the pairing exists, null if not.
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/taxonomy.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit:
* Renames the `$parent` parameter to `$category_parent` in `category_exists()` and `wp_create_category()`. This matches the category object property of the same name.
* Amends similar parameters in `dropdown_categories()` and `wp_dropdown_cats()` for consistency.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53216
git-svn-id: http://core.svn.wordpress.org/trunk@52805 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-19 15:51:08 +02:00
|
|
|
function category_exists( $cat_name, $category_parent = null ) {
|
|
|
|
$id = term_exists( $cat_name, 'category', $category_parent );
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( is_array( $id ) ) {
|
2007-06-02 04:53:09 +02:00
|
|
|
$id = $id['term_id'];
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2007-06-02 04:53:09 +02:00
|
|
|
return $id;
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2022-06-17 01:39:08 +02:00
|
|
|
* Gets 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
|
|
|
/**
|
2022-06-17 01:39:08 +02:00
|
|
|
* Adds 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
|
|
|
*
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/taxonomy.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit:
* Renames the `$parent` parameter to `$category_parent` in `category_exists()` and `wp_create_category()`. This matches the category object property of the same name.
* Amends similar parameters in `dropdown_categories()` and `wp_dropdown_cats()` for consistency.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53216
git-svn-id: http://core.svn.wordpress.org/trunk@52805 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-19 15:51:08 +02:00
|
|
|
* @param int|string $cat_name Category name.
|
|
|
|
* @param int $category_parent Optional. ID of parent category.
|
2014-11-03 06:50:23 +01:00
|
|
|
* @return int|WP_Error
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/taxonomy.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit:
* Renames the `$parent` parameter to `$category_parent` in `category_exists()` and `wp_create_category()`. This matches the category object property of the same name.
* Amends similar parameters in `dropdown_categories()` and `wp_dropdown_cats()` for consistency.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53216
git-svn-id: http://core.svn.wordpress.org/trunk@52805 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-19 15:51:08 +02:00
|
|
|
function wp_create_category( $cat_name, $category_parent = 0 ) {
|
|
|
|
$id = category_exists( $cat_name, $category_parent );
|
2019-07-01 14:52:01 +02:00
|
|
|
if ( $id ) {
|
2007-05-25 09:16:21 +02:00
|
|
|
return $id;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return wp_insert_category(
|
|
|
|
array(
|
|
|
|
'cat_name' => $cat_name,
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/taxonomy.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit:
* Renames the `$parent` parameter to `$category_parent` in `category_exists()` and `wp_create_category()`. This matches the category object property of the same name.
* Amends similar parameters in `dropdown_categories()` and `wp_dropdown_cats()` for consistency.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53216
git-svn-id: http://core.svn.wordpress.org/trunk@52805 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-19 15:51:08 +02:00
|
|
|
'category_parent' => $category_parent,
|
2017-12-01 00:11:00 +01:00
|
|
|
)
|
|
|
|
);
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2022-06-17 01:39:08 +02:00
|
|
|
* Creates 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
|
|
|
*
|
2018-03-25 20:10:32 +02:00
|
|
|
* @param string[] $categories Array of category names to create.
|
|
|
|
* @param int $post_id Optional. The post ID. Default empty.
|
2019-11-05 22:30:03 +01:00
|
|
|
* @return int[] Array of IDs of categories assigned to 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 = '' ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$cat_ids = array();
|
2015-01-08 08:05:25 +01:00
|
|
|
foreach ( $categories as $category ) {
|
2019-07-01 14:52:01 +02:00
|
|
|
$id = category_exists( $category );
|
|
|
|
if ( $id ) {
|
2015-01-08 08:05:25 +01:00
|
|
|
$cat_ids[] = $id;
|
2019-07-01 14:52:01 +02:00
|
|
|
} else {
|
|
|
|
$id = wp_create_category( $category );
|
|
|
|
if ( $id ) {
|
|
|
|
$cat_ids[] = $id;
|
|
|
|
}
|
2015-01-08 08:05:25 +01:00
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $post_id ) {
|
|
|
|
wp_set_post_categories( $post_id, $cat_ids );
|
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
|
|
|
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.
|
2021-11-23 22:37:01 +01:00
|
|
|
* @return int|WP_Error 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 ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
$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
|
|
|
|
2020-05-16 20:42:12 +02:00
|
|
|
if ( '' === trim( $catarr['cat_name'] ) ) {
|
2014-05-13 05:27:13 +02:00
|
|
|
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?
|
2017-12-01 00:11:00 +01:00
|
|
|
$update = ! empty( $catarr['cat_ID'] );
|
2014-05-13 05:27:13 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
$name = $catarr['cat_name'];
|
2014-05-13 05:27:13 +02:00
|
|
|
$description = $catarr['category_description'];
|
2017-12-01 00:11:00 +01:00
|
|
|
$slug = $catarr['category_nicename'];
|
|
|
|
$parent = (int) $catarr['category_parent'];
|
2014-05-13 05:27:13 +02:00
|
|
|
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
|
|
|
|
2017-12-01 00:11:00 +01: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.
|
2021-01-03 23:04:04 +01:00
|
|
|
* @return int|false The ID number of the new or updated Category on success. Zero or FALSE on failure.
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function wp_update_category( $catarr ) {
|
2023-02-02 14:59:18 +01:00
|
|
|
$cat_id = (int) $catarr['cat_ID'];
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2023-03-10 08:04:20 +01:00
|
|
|
if ( isset( $catarr['category_parent'] ) && ( $cat_id === (int) $catarr['category_parent'] ) ) {
|
2007-05-25 09:16:21 +02:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2020-01-29 01:45:18 +01:00
|
|
|
// First, get all of the original fields.
|
2023-02-02 14:59:18 +01:00
|
|
|
$category = get_term( $cat_id, 'category', ARRAY_A );
|
2013-10-02 21:59:10 +02:00
|
|
|
_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.
|
2017-12-01 00:11:00 +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.
|
2017-12-01 00:11:00 +01:00
|
|
|
$catarr = array_merge( $category, $catarr );
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return wp_insert_category( $catarr );
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2020-01-29 01:45:18 +01:00
|
|
|
// Tags.
|
2007-05-25 09:16:21 +02:00
|
|
|
//
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2022-06-17 01:39:08 +02:00
|
|
|
* Checks 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
|
2021-07-02 00:02:57 +02:00
|
|
|
* @return mixed Returns null if the term does not exist.
|
|
|
|
* Returns an array of the term ID and the term taxonomy ID if the pairing exists.
|
|
|
|
* Returns 0 if term ID 0 is passed to the function.
|
2008-10-02 03:03:26 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function tag_exists( $tag_name ) {
|
|
|
|
return term_exists( $tag_name, 'post_tag' );
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|
|
|
|
|
2008-10-02 03:03:26 +02:00
|
|
|
/**
|
2022-06-17 01:39:08 +02:00
|
|
|
* Adds 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
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function wp_create_tag( $tag_name ) {
|
|
|
|
return wp_create_term( $tag_name, 'post_tag' );
|
2008-12-18 20:12:26 +01:00
|
|
|
}
|
|
|
|
|
2010-11-22 18:17:26 +01:00
|
|
|
/**
|
2022-06-17 01:39:08 +02:00
|
|
|
* Gets 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'.
|
2021-01-03 23:04:04 +01:00
|
|
|
* @return string|false|WP_Error
|
2010-11-22 18:17:26 +01:00
|
|
|
*/
|
|
|
|
function get_tags_to_edit( $post_id, $taxonomy = 'post_tag' ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
return get_terms_to_edit( $post_id, $taxonomy );
|
2010-11-22 18:17:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-06-17 01:39:08 +02:00
|
|
|
* Gets 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'.
|
2021-01-03 23:04:04 +01:00
|
|
|
* @return string|false|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;
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! $post_id ) {
|
2010-11-22 18:17:26 +01:00
|
|
|
return false;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2010-11-22 18:17:26 +01:00
|
|
|
|
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 );
|
2016-05-26 06:50:27 +02:00
|
|
|
wp_cache_add( $post_id, wp_list_pluck( $terms, 'term_id' ), $taxonomy . '_relationships' );
|
2014-05-23 21:29:14 +02:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2020-10-18 19:27:06 +02:00
|
|
|
$terms_to_edit = esc_attr( implode( ',', $term_names ) );
|
2014-03-24 04:14:15 +01:00
|
|
|
|
|
|
|
/**
|
2016-05-22 20:01:30 +02:00
|
|
|
* Filters the comma-separated list of terms available to edit.
|
2014-03-24 04:14:15 +01:00
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*
|
|
|
|
* @see get_terms_to_edit()
|
|
|
|
*
|
2018-03-25 21:35:29 +02:00
|
|
|
* @param string $terms_to_edit A comma-separated list of term names.
|
|
|
|
* @param string $taxonomy The taxonomy name for which to retrieve terms.
|
2014-03-24 04:14:15 +01:00
|
|
|
*/
|
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
|
|
|
/**
|
2022-06-17 01:39:08 +02:00
|
|
|
* Adds 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
|
|
|
*
|
2020-07-23 02:48:06 +02:00
|
|
|
* @param string $tag_name The term name.
|
|
|
|
* @param string $taxonomy Optional. The taxonomy within which to create the term. Default 'post_tag'.
|
2014-11-03 06:50:23 +01:00
|
|
|
* @return array|WP_Error
|
2008-12-18 20:12:26 +01:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function wp_create_term( $tag_name, $taxonomy = 'post_tag' ) {
|
2019-07-01 14:52:01 +02:00
|
|
|
$id = term_exists( $tag_name, $taxonomy );
|
|
|
|
if ( $id ) {
|
2007-05-25 09:16:21 +02:00
|
|
|
return $id;
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2007-05-25 09:16:21 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return wp_insert_term( $tag_name, $taxonomy );
|
2007-05-25 09:16:21 +02:00
|
|
|
}
|