我有3种不同类型的自定义帖子类型, 并使用Redux框架。所有人都在工作, 但面临两个问题。如果我未设置框架, 则效果很好。
- the_permalink()缺少URL中的post_type, 如下所示:应该为http:// sitename / product / abc, 但获取的是http:// sitename / abc。然后将我带到404页。(在产品编辑屏幕中, 我得到了正确的提示, 但没有the_permalink())
- 当我手动更正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解决方法如下:禁用框架, 然后再次启用它。有用 :)
推荐阅读
- 精品SpringSecurity集成JWT#yyds干货盘点#
- 列出特定类别的帖子标题的短代码
- 短代码在WordPress自定义主题中不起作用
- 在Woocommerce商店页面上将所有产品分开分类
- 在PHP echo中运行PHP()
- 在WordPress中激活主题激活函数
- 在WordPress中使用MySQL查询检索小部件数据
- 解决WordPress子主题上与父主题的javascript冲突
- 自适应网站只能在台式机上运行,??而不能在移动设备上运行