我创建了一个自定义帖子类型 - 按 - 使用functions.php中的以下代码:
// Press Custom Post Type //
function press_custom_init() {
$labels = array(
'name' => _x('Press', 'post type general name'),
'singular_name' => _x('Press', 'post type singular name'),
'add_new' => _x('Add New', 'press'),
'add_new_item' => __('Add New Press Item'),
'edit_item' => __('Edit Item'),
'new_item' => __('New Press Item'),
'view_item' => __('View Press Item'),
'search_items' => __('Search Press'),
'not_found' => __('Nothing found'),
'not_found_in_trash' => __('Nothing found in Trash'),
'parent_item_colon' => ''
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'query_var' => true,
'rewrite' => array('slug','pages'),
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => 5,
'supports' => array('title','editor','thumbnail','excerpt',)
);
register_post_type( 'press' , $args );
}
add_action( 'init', 'press_custom_init' );
我添加了该帖子类型的项目,并在我的导航栏中添加了一个菜单项,但是当我点击该链接时,我收到了“找不到帖子”的消息。
您可以在此处查看:http://s13.mynewsitereview.com//press
请帮忙!
答案 0 :(得分:8)
只需访问 WP-admin中的永久链接页面http://yoursite.com/wp-admin/options-permalink.php
即可解决此问题。
<强>为什么吗
在WordPress中创建任何插件(后期类型,分类法等)之后,WordPress需要更新/创建一组新的重写规则(假设您使用的是非常永久链接)。您只需访问后端的固定链接页面,以便为新的帖子类型生成新规则,等等。技术术语是法拉盛重写规则(http://codex.wordpress.org/Function_Reference/flush_rewrite_rules)