0
この質問は以前に尋ねられましたが、私の状況に対する回答が見つかりませんでした。URLを変更せずに「カスタム投稿タイプ」に投稿を変更してください
新しいCPTに変更する必要がある既存の投稿があります。 新しいCPTに変更すると、URLも更新されます。どうすればこれを防ぐことができますか?
また、将来私がCPT用に作成する新しいページでも、スラッグを表示します。
$args = array(
'labels' => $labels,
'label' => 'Custom Page',
'description' => 'Custom Page',
'menu_icon' => 'dashicons-smartphone',
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => array(
'slug' => 'custom',
'with_front' => false
),
'capability_type' => 'post',
'has_archive' => false,
'hierarchical' => true,
'menu_position' => 5,
'supports' => array('title', 'editor', 'excerpt', 'page-attributes'),
);
register_post_type('custom_page', $args);
試してみる何ですか –