0

我创建了自定义帖子类型“事件”以显示在名为 single-event.php 文件的单页中,但它提供了 404 错误。即使我使用过,我该如何解决这个问题

刷新重写规则();

请帮我解决我的问题......这是我的代码..

function custom_event() {
$labels = array( 
'name' => _x('Event', 'post type general name'),
'singular_name' => _x('Event', 'post type singular name'),
'add_new' => _x('Add Event', 'Content'),
'add_new_item' => __('Add New Event'),
'edit_item' => __('Edit Event'),
'new_item' => __('New Content'),
'view_item' => __('View Event'),
'search_items' => __('Search Content'),
'not_found' =>  __('Nothing found'), 
'parent_item_colon' => '',
'menu_name' => __('Event')
 );

 $args = array(
 'labels' => $labels,
 'public' => true,
 'publicly_queryable' => true,
 'show_ui' => true, 
 'show_in_menu' => true,  
 'query_var' => true,
 'rewrite' => true,
 'capability_type' => 'post',
 'has_archive' => true, 
 'hierarchical' => false,
 'menu_position' => 20,
 'supports' => array( 'title', 'editor')
  );

  flush_rewrite_rules();
  register_post_type('event', $args); 
  }
  //$wp_rewrite->flush_rules();
  //add_action('admin_init', 'flush_rewrite_rules');
   add_action ('init', 'custom_event');
4

1 回答 1

2

尝试使用'rewrite' => array( 'slug' => 'event' )而不是'rewrite' => true.

另外,你不应该这样使用flush_rewrite_rules()。它每次都会不必要地运行。您可以制作一个插件来定义自定义帖子类型并使用register_activation_hook.

于 2013-01-08T10:17:43.200 回答