Non proverei a localizzare le tue lumache. Invece, perché non dare ai tuoi utenti la possibilità di cambiarli aggiungendo un altro campo alla pagina delle impostazioni del permalink?
Aggancia load-options-permalink.php
e imposta alcune cose per catturare i $_POST
dati per salvare la tua lumaca. Aggiungi anche un campo impostazioni alla pagina.
<?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' );
}
Quindi la funzione di richiamata per il campo delle impostazioni:
<?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" />';
}
Quindi quando registri il tuo tipo di post, prendi la lumaca con get_option
. Se non è presente, utilizza l'impostazione predefinita.
<?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 );
}
Ecco la parte del campo delle impostazioni come plugin https://gist.github.com/1275867
EDIT: un'altra opzione
Puoi anche cambiare la lumaca in base a ciò che è definito in WPLANG
costante.
Basta scrivere una funzione rapida che contiene i dati ...
<?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];
}
Quindi prendi la lumaca dove registri il tuo tipo di post personalizzato.
<?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 );
}
L'opzione migliore, IMO, sarebbe quella di dare all'utente un'opzione e fornire solide impostazioni predefinite:
<?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
con una lumaca impostata suprensa
. Usando WPML la lumaca della pagina tradotta èpress
come non può essere diprensa
nuovo: / en / press / che non mostra nulla (nota che ora facendo clic sul collegamento ES non ti riporta a / prensa /). MA, se visiti / en / prensa / funziona ...