用語が混同しているかもしれませんので、フォローしていただければ幸いです。
「パッケージ」のカスタム投稿タイプがあります 「パッケージタイプの追加」と呼ばれるカテゴリを作成する機能を設定しました
カテゴリを追加するときに、「パッケージ タイプの追加」にある場合にのみ、新しいカテゴリのタイトルを含む新しいページを挿入したいと考えています。
次のコードでカテゴリのタイトルを取得できないようです.$taxonomy内で「パッケージタイプの追加」を取得します.これは問題ありません. しかし、入力したばかりのタイトルと同じ名前のページを作成したいと考えています。
ありがとう
function custom_create_packages( $term_id, $tt_id, $taxonomy ){
if($taxonomy == 'package type'){
$new_page_title = $cat_title;
$new_page_content = 'This is the page content';
$new_page_template = ''; //ex. template-custom.php. Leave blank if you don't want a custom page template.
//don't change the code bellow, unless you know what you're doing
$page_check = get_page_by_title($new_page_title);
$new_page = array(
'post_type' => 'page',
'post_title' => $new_page_title,
'post_content' => $new_page_content,
'post_status' => 'publish',
'post_author' => 1,
);
if(!isset($page_check->ID)){
$new_page_id = wp_insert_post($new_page);
if(!empty($new_page_template)){
update_post_meta($new_page_id, '_wp_page_template', $new_page_template);
}
}
}
}
add_action( 'create_term', 'custom_create_packages', 10, 3 );