mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
7428c2fbbc
git-svn-id: http://svn.automattic.com/wordpress/branches/2.0@3771 1a063a9b-81f0-0310-95a4-ce76da25c4cd
38 lines
734 B
PHP
38 lines
734 B
PHP
<?php
|
|
require_once('../wp-config.php');
|
|
require_once('admin-functions.php');
|
|
require_once('admin-db.php');
|
|
|
|
if ( !current_user_can('manage_categories') )
|
|
die('-1');
|
|
if ( !check_ajax_referer() )
|
|
die('-1');
|
|
|
|
function get_out_now() { exit; }
|
|
|
|
add_action('shutdown', 'get_out_now', -1);
|
|
|
|
$names = explode(',', rawurldecode($_POST['ajaxnewcat']) );
|
|
$ids = array();
|
|
|
|
foreach ($names as $cat_name) {
|
|
$cat_name = trim( $cat_name );
|
|
|
|
if ( !$category_nicename = sanitize_title($cat_name) )
|
|
continue;
|
|
if ( $already = category_exists($cat_name) ) {
|
|
$ids[] = (string) $already;
|
|
continue;
|
|
}
|
|
|
|
$new_cat_id = wp_create_category($cat_name);
|
|
|
|
$ids[] = (string) $new_cat_id;
|
|
}
|
|
|
|
$return = join(',', $ids);
|
|
|
|
die( (string) $return );
|
|
|
|
?>
|