Sümüklü böcekleri lokalize etmeye çalışmazdım. Bunun yerine, kullanıcılarınıza kalıcı bağlantı ayarları sayfasına başka bir alan ekleyerek onları değiştirme seçeneği vermiyorsunuz?
Bağlayın load-options-permalink.php
ve $_POST
sülük kurtarmak için veri yakalamak için bazı şeyler ayarlayın . Ayrıca sayfaya bir ayarlar alanı ekleyin.
<?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' );
}
Ardından ayarlar alanı için geri arama işlevi:
<?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" />';
}
Sonra yazı tipini kaydettiğinizde, sülük ile kapmak get_option
. Orada yoksa, varsayılanınızı kullanın.
<?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 );
}
İşte ayarlar alanı kısmı eklenti olarak https://gist.github.com/1275867
DÜZENLEME: Başka Bir Seçenek
Slug'u WPLANG
sabitte tanımlananlara göre de değiştirebilirsiniz .
Verileri tutan hızlı bir işlev yazmanız yeterlidir ...
<?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];
}
Ardından, özel gönderi türünüzü kaydettiğiniz yeri slug alın.
<?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 );
}
En iyi seçenek olan IMO, kullanıcıya bir seçenek sunmak ve sağlam varsayılanlar sağlamak olacaktır:
<?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
prensa
press
prensa