How to change ?lang=cn into /cn/

Set permalink to (Post Name)

or

http://www.example.com/[blog_name]`/%post_id%/%postname%/`

Add following code to functions.php of your theme:

add_filter ( 'alias_rule', 'xili_language_trans_slug_qv' ) ;


function xl_permalinks_init () {
    global $XL_Permalinks_rules;
    if (class_exists('XL_Permalinks_rules') ) {
        $XL_Permalinks_rules = new XL_Permalinks_rules ();
        add_permastruct ( 'language', '%lang%', true, 1 );
        add_permastruct ( 'language', '%lang%', array('with_front' => false) );

    }
}

Leave a Comment