我創建了一個帖子,然後它說我已經發布,但是當我點擊網址時我找不到一個頁面!爲什麼我在WordPress中的自定義帖子不顯示?
這裏是我的自定義後設置代碼:
add_action('init', 'offered_register');
function offered_register() {
$labels = array(
'name' => _x('Offered items'),
'singular_name' => _x('Item'),
'add_new' => _x('Give an item away'),
'add_new_item' => __('Give a new item away'),
'edit_item' => __('Edit item'),
'new_item' => __('Give Item Away'),
'view_item' => __('View Item'),
'search_items' => __('Search Offered Items'),
'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,
'query_var' => true,
'menu_icon' => get_stylesheet_directory_uri() . '/images/article16.png',
'rewrite' => true,
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => null,
'supports' => array('title','thumbnail', 'custom-fields','comments')
);
register_post_type('offered' , $args);
}
謝謝,我只是將鏈接類型更改爲默認值,並且工作正常!我會看看同花順的重寫,歡呼。 – Nicola 2012-03-31 12:56:08
在我的插件中只是一個警告flush_rewrite_rules()最終成爲我的問題的一部分。我最終只是手動更新固定鏈接。 – myol 2014-10-20 08:37:23