我创建了一个简单的页面模板。我想使用 wp_insert_category 自动创建类别,但 wp_insert_category 在我的自定义页面中不可用。有什么解决办法吗?
<?php
/*
* Template Name: My Custom Page
* Description: A Page Template with a darker design.
*/
get_header(); ?>
<?php
if (function_exists('wp_insert_category')) {
echo "This function is available.";
} else {
echo "This function is not available.";
}
?>
<?php get_footer(); ?>