- 状态
- 未解决
- 相关插件/主题
- Oxygen
- 主题标签
- Compatibility
问题概述
在某些情况下,Oxygen Builder模板翻译对未登录的访客无法正确显示。
临时解决方法
在继续操作之前,请确保对您的站点进行完整备份,并请注意 Oxygen 目前与 WPML 不兼容。
- 安装类似 WP Code 的插件,并确保该代码片段作为 PHP 代码读取。
- 添加以下代码片段:
add_action( 'init', 'wpml_ct_add_templates_cpt' ); function wpml_ct_add_templates_cpt() { $labels = array( 'name' => _x( 'Templates', 'post type general name', 'component-theme' ), 'singular_name' => _x( 'Template', 'post type singular name', 'component-theme' ), 'menu_name' => _x( 'Templates', 'admin menu', 'component-theme' ), 'name_admin_bar' => _x( 'Template', 'add new on admin bar', 'component-theme' ), 'add_new' => _x( 'Add New Template', 'template', 'component-theme' ), 'add_new_item' => __( 'Add New Template', 'component-theme' ), 'new_item' => __( 'New Template', 'component-theme' ), 'edit_item' => __( 'Edit Template', 'component-theme' ), 'view_item' => __( 'View Template', 'component-theme' ), 'all_items' => __( 'Templates', 'component-theme' ), 'search_items' => __( 'Search Templates', 'component-theme' ), 'parent_item_colon' => __( 'Parent Templates:', 'component-theme' ), 'not_found' => __( 'No templates found.', 'component-theme' ), 'not_found_in_trash' => __( 'No templates found in Trash.', 'component-theme' ) ); $args = array( 'exclude_from_search' => true, 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'has_archive' => true, 'show_ui' => true, 'show_in_menu' => 'ct_template', 'rewrite' => false, 'query_var' => true, 'capability_type' => 'post', 'hierarchical' => false, 'menu_position' => null, 'supports' => array( 'title' ) ); register_post_type( 'ct_template', $args ); } - 使用 WordPress 编辑器翻译您的 Oxygen 模板。