我有3种不同类型的自定义帖子类型并使用 Redux框架。一切正在运转,但面临两个问题。如果我取消设置框架,它可以正常工作。
the_permalink()
在网址中缺少post_type,如下所示:
应为http://sitename/product/abc
,但获得http://sitename/abc
。
它需要我到404页。(在产品编辑屏幕中我得到了正确的slug,但没有the_permalink()
)
当我手动更正网址(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();
}
我正在运行WordPress 3.9
和Redux 3.2.0
而未启用 dev_mode
。
我的永久链接结构:/%postname%/
如果可以解决,请告诉我。
提前致谢。
答案 0 :(得分:0)
解决以下问题: 已停用框架,再次启用。它有效:)