Untuk beberapa situs dalam bahasa Jerman saya menggunakan plugin berikut untuk menerjemahkan page
ke seite
(kata Jerman untuk page
):
<?php # -*- coding: utf-8 -*-
/**
* Plugin Name: T5 Page to Seite
* Description: Ersetzt <code>/page/</code> durch <code>/seite/</code>.
* Author: Fuxia Scholz
* License: MIT
* License URI: http://www.opensource.org/licenses/mit-license.php
*/
if ( ! function_exists( 't5_page_to_seite' ) )
{
register_activation_hook( __FILE__ , 't5_flush_rewrite_on_init' );
register_deactivation_hook( __FILE__ , 't5_flush_rewrite_on_init' );
add_action( 'init', 't5_page_to_seite' );
function t5_page_to_seite()
{
$GLOBALS['wp_rewrite']->pagination_base = 'seite';
}
function t5_flush_rewrite_on_init()
{
add_action( 'init', 'flush_rewrite_rules', 11 );
}
}
Perhatikan bahwa Anda menyiram menulis ulang aturan tentang de / aktivasi hanya . Anda akan membutuhkan aturan penulisan ulang yang terpisah di Anda .htaccess
untuk mengarahkan ulang URL lama ke yang baru:
RedirectMatch Permanent ^/(.*)/page/(.*) /$1/seite/$2