单页模板不适用于自定义帖子类型

我有3种不同类型的自定义帖子类型, 并使用Redux框架。所有人都在工作, 但面临两个问题。如果我未设置框架, 则效果很好。

  1. the_permalink()缺少URL中的post_type, 如下所示:应该为http:// sitename / product / abc, 但获取的是http:// sitename / abc。然后将我带到404页。(在产品编辑屏幕中, 我得到了正确的提示, 但没有the_permalink())
  2. 当我手动更正URL(http:// sitename / product / abc)时, 它将带我到主页。但是它应该在single-product.php或single.php页面中。
【单页模板不适用于自定义帖子类型】我使用以下代码制作自定义帖子类型:
add_action( 'init', 'tormuz_product_cpt' ); function tormuz_product_cpt() { $labels = array( 'name'=> _x( 'Products', 'post type general name' ), 'singular_name'=> _x( 'Product', 'post type singular name' ), 'add_new'=> _x( 'Add New', 'book' ), 'add_new_item'=> __( 'Add New Product' ), 'edit_item'=> __( 'Edit Product' ), 'new_item'=> __( 'New Product' ), 'all_items'=> __( 'All Products' ), 'view_item'=> __( 'View Product' ), 'search_items'=> __( 'Search Products' ), 'not_found'=> __( 'No products found' ), 'not_found_in_trash' => __( 'No products found in the Trash' ), 'parent_item_colon'=> '', 'menu_name'=> 'Products' ); $args = array( 'labels'=> $labels, 'description'=> 'Holds our products and product specific data', 'public'=> true, 'menu_position' => 45, 'supports'=> array( 'title', 'editor', 'thumbnail' ), 'has_archive'=> true, ); register_post_type( 'product', $args ); flush_rewrite_rules(); }

我在未启用dev_mode的情况下运行WordPress 3.9和Redux 3.2.0。
我的永久链接结构:/%postname%/
如果可以解决, 请告诉我。
提前致谢。
#1解决方法如下:禁用框架, 然后再次启用它。有用 :)

    推荐阅读