Đối với một số trang web bằng tiếng Đức, tôi sử dụng plugin sau để dịch page
sang seite
(từ tiếng Đức cho 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 );
}
}
Lưu ý rằng bạn tuôn ra các quy tắc viết lại trên kích hoạt / de duy nhất . Bạn sẽ cần một quy tắc viết lại riêng trong bạn .htaccess
để chuyển hướng các URL cũ sang các URL mới:
RedirectMatch Permanent ^/(.*)/page/(.*) /$1/seite/$2