-2
我已經創建了一個簡單的頁面模板。我想使用wp_insert_category自動創建類別,但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(); ?>
在你的頁面中包含'wp_insert_category'是解決方案。 –