私はビジネスと呼ばれるCPTを持っていますが、その中に投稿を作成しましたが、投稿をクリックすると空白ページが表示されます。誰でも知っている理由は?ワードプレスの独自のページにカスタムポストタイプをリンクします
<?php
//create a custom post type for new businesses
function create_businesses() {
$labels = array(
'name' => 'Our Businiesses',
'singular_name' => 'Our Businesses',
'add_new_item' => 'Add A New Business', 'chandco',
'new_item' => 'New Business', 'chandco',
'edit_item' => 'Edit Business', 'chandco',
'view_item' => 'View Business', 'chandco',
'all_items' => 'All Businesses', 'chandco',
'add_new' => 'Add A New Business', 'chandco'
);
$args = array(
'labels' => $labels,
'public' => true,
'has_archive' => true,
'capability_type' => 'post',
'supports' => array('title', 'editor', 'thumbnail'),
'rewrite' => array('slug' => 'businesses'),
);
register_post_type('businesses', $args);
}
add_action('init', 'create_businesses');
?>
permalinkを使用して.htacessを再生成し、sing.phpのコードを新しい作成済みファイルに貼り付けてチェックします。 –
@AkshayShah iveはカスタムテンプレートを作成しましたが、すべてのコードが入っています – Raj
カスタムを作成する方法あなたはerror.logをチェックしましたか? –