とのパーマリンク、Wordpressの - 下図のように、私はカスタムポストタイプを作成したカスタムポストタイプ
function transactions_register() {
$args = array(
'label' => __('Transactions'),
'singular_label' => __('Transaction'),
'public' => true,
'show_ui' => true,
'capability_type' => 'post',
'hierarchical' => false,
'rewrite' => array("slug" => "transaction"),
'supports' => array('title', 'editor', 'thumbnail')
);
register_post_type('transaction' , $args);
}
私はに移動したときただし、この/%category/%postname
ようになり、私のパーマリンクを設定していますトランザクションは、URLは、次のようになります
これは、次のサーバーエラー
を返し
。ただし、ページが
を見つけることができませんどのように私はそれがとても私のカスタムポストタイプは私のパーマリンク設定で動作することができますか?