Wordpress — permalink with custom post types
问题 I have created a custom post type as seen below, 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 ); } I have set my permalinks to be like this /%category/%postname however when I navigate to a