将Wordpress更新为3.7.1后,我的单个自定义帖子类型帖子已停止显示内容,除非我使用默认的永久链接结构。我没有收到404错误,只是缺少帖子内容。我已经搜索了解决方案,但到目前为止我找到的并没有描述我正在经历的内容,也没有任何解决方案可用。
这是我主题的functions.php中的自定义帖子类型注册码:
add_action( 'init', 'gallery_init' );
add_action('init', 'my_custom_init');
function my_custom_init()
{
$labels = array(
'name' => _x('Work', 'post type general name'),
'singular_name' => _x('Work', 'post type singular name'),
'add_new' => _x('Add New', 'work'),
'add_new_item' => __('Add New Work'),
'edit_item' => __('Edit Work'),
'new_item' => __('New Work'),
'view_item' => __('View Work'),
'search_items' => __('Search Work'),
'not_found' => __('No work found'),
'not_found_in_trash' => __('No work found in Trash'),
'parent_item_colon' => ''
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'description' => __( 'Work for portfolio.' ),
'show_ui' => true,
'query_var' => '0',
'rewrite' => true,
'slug' => 'work',
'capability_type' => 'post',
'hierarchical' => true,
'menu_position' => null,
'exclude_from_search' => false,
'taxonomies' => array( 'gallery'),
'supports' => array('title','editor','thumbnail','custom-fields','page-attributes')
);
register_post_type('work',$args);
}
答案 0 :(得分:1)
在$args
数组中,您有'query_var' => '0'
。
阅读register_post_type()
docs,我看到了:
query_var
(布尔值或字符串)(可选)为此帖子类型设置query_var
键 默认值:true - 设置为$post_type
我想知道是否对3.7.1中的query_var
进行了更严格的检查,其中'0'
无法正常工作,因为它严格来说与{{1}不一样}}。 (从技术上讲,正如你所定义的那样,它是(boolean) false
。)