Я бы не пытался локализовать ваши слизни. Вместо этого, почему бы не дать своим пользователям возможность изменить их, добавив другое поле на страницу настроек постоянной ссылки?
Подключитесь load-options-permalink.php
и настройте некоторые вещи, чтобы поймать $_POST
данные, чтобы сохранить ваш слаг. Также добавьте поле настроек на страницу.
<?php
add_action( 'load-options-permalink.php', 'wpse30021_load_permalinks' );
function wpse30021_load_permalinks()
{
if( isset( $_POST['wpse30021_cpt_base'] ) )
{
update_option( 'wpse30021_cpt_base', sanitize_title_with_dashes( $_POST['wpse30021_cpt_base'] ) );
}
// Add a settings field to the permalink page
add_settings_field( 'wpse30021_cpt_base', __( 'CPT Base' ), 'wpse30021_field_callback', 'permalink', 'optional' );
}
Затем функция обратного вызова для поля настроек:
<?php
function wpse30021_field_callback()
{
$value = get_option( 'wpse30021_cpt_base' );
echo '<input type="text" value="' . esc_attr( $value ) . '" name="wpse30021_cpt_base" id="wpse30021_cpt_base" class="regular-text" />';
}
Затем, когда вы зарегистрируете свой тип поста, возьмите слаг get_option
. Если его там нет, используйте ваш по умолчанию.
<?php
add_action( 'init', 'wpse30021_register_post_type' );
function wpse30021_register_post_type()
{
$slug = get_option( 'wpse30021_cpt_base' );
if( ! $slug ) $slug = 'your-default-slug';
// register your post type, reference $slug for the rewrite
$args['rewrite'] = array( 'slug' => $slug );
// Obviously you probably need more $args than one....
register_post_type( 'wpse30021_pt', $args );
}
Вот часть поля настроек в виде плагина https://gist.github.com/1275867
РЕДАКТИРОВАТЬ: еще один вариант
Вы также можете изменить слаг в зависимости от того, что определено в WPLANG
константе.
Просто напишите быструю функцию, которая хранит данные ...
<?php
function wpse30021_get_slug()
{
// return a default slug
if( ! defined( 'WPLANG' ) || ! WPLANG || 'en_US' == WPLANG ) return 'press';
// array of slug data
$slugs = array(
'fr_FR' => 'presse',
'es_ES' => 'prensa'
// etc.
);
return $slugs[WPLANG];
}
Затем получите слаг, где вы зарегистрируете свой собственный тип записи.
<?php
add_action( 'init', 'wpse30021_register_post_type' );
function wpse30021_register_post_type()
{
$slug = wpse30021_get_slug();
// register your post type, reference $slug for the rewrite
$args['rewrite'] = array( 'slug' => $slug );
// Obviously you probably need more $args than one....
register_post_type( 'wpse30021_pt', $args );
}
Наилучшим вариантом, IMO, было бы предоставить пользователю возможность и предоставить твердые значения по умолчанию:
<?php
add_action( 'init', 'wpse30021_register_post_type' );
function wpse30021_register_post_type()
{
$slug = get_option( 'wpse30021_cpt_base' );
// They didn't set up an option, get the default
if( ! $slug ) $slug = wpse30021_get_slug();
// register your post type, reference $slug for the rewrite
$args['rewrite'] = array( 'slug' => $slug );
// Obviously you probably need more $args than one....
register_post_type( 'wpse30021_pt', $args );
}
prensa
slugprensa
. Используя WPML, переведенный слаг страницы будет таким,press
каким он не может бытьprensa
снова: / en / press /, который ничего не отображает (обратите внимание, что теперь щелкнув ссылку ES, вы не вернетесь к / prensa /). НО, если вы посещаете / en / prensa / это работает ...