我学习了如何使用以下教程制作自定义帖子类型:
http://sixrevisions.com/wordpress/wordpress-custom-post-types-guide/
它主要包括将此代码添加到 function.php :
add_action( 'init', 'create_events' );
function create_events() {
$labels = array(
'name' => _x('Events', 'post type general name'),
'singular_name' => _x('Event', 'post type singular name'),
'add_new' => _x('Add New', 'Event'),
'add_new_item' => __('Add New Event'),
'edit_item' => __('Edit Event'),
'new_item' => __('New Event'),
'view_item' => __('View Event'),
'search_items' => __('Search Events'),
'not_found' => __('No Events found'),
'not_found_in_trash' => __('No Events found in Trash'),
'parent_item_colon' => ''
);
$supports = array('title', 'editor', 'custom-fields', 'revisions', 'excerpt');
register_post_type( 'event',
array(
'labels' => $labels,
'public' => true,
'supports' => $supports
)
);
}
WPML插件可帮助您将帖子翻译为不同的语言。但是此选项不会出现在自定义帖子类型中。
有什么建议吗?
答案 0 :(得分:13)
点击WPML->多语言内容设置,然后选择让这些自定义类型可翻译。
管理仪表板中还有一条通知说您没有选择是否要翻译自定义类型。