web-dev-qa-db-ja.com

ページネーションの "ページ"スラッグを変更する

簡単な質問です。ページネーションが有効になると、URLは"site.com/page/2"に変わります。私のサイトでは、これは"site.com/paggetto/2"であるはずです。

その書き換えルールを変更するにはどうすればよいですか。 "author"や他の変数も変更したいです。

13
DarkGhostHunter

ドイツ語の一部のサイトでは、pageseiteに変換するために次のプラグインを使用します(pageのドイツ語)。

<?php # -*- coding: utf-8 -*-
/**
 * Plugin Name: T5 Page to Seite
 * Description: Ersetzt <code>/page/</code> durch <code>/seite/</code>.
 * Author:      Thomas Scholz <[email protected]>
 * Author URI:  http://toscho.de
 * 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 );
    }
}

De/activation only の書き換え規則をフラッシュすることに注意してください。古いURLを新しいURLにリダイレクトするには、.htaccessに別の書き換え規則が必要になります。

RedirectMatch Permanent ^/(.*)/page/(.*) /$1/seite/$2
15
fuxia

考え出した:

function re_rewrite_rules() {
    global $wp_rewrite;
    // $wp_rewrite->author_base = $author_slug;
//  print_r($wp_rewrite);
    $wp_rewrite->author_base        = 'autor';
    $wp_rewrite->search_base        = 'buscar';
    $wp_rewrite->comments_base      = 'comentarios';
    $wp_rewrite->pagination_base    = 'pagina';
    $wp_rewrite->flush_rules();
}
add_action('init', 're_rewrite_rules');

少なくとも、それは仕事をするでしょう。

17
DarkGhostHunter

この関数はあなたの翻訳パッケージと直接働き、あなたの新しいベースをフォーマットし、そしてflush_rewrite_rules関数があなたのブログの悪いパフォーマンスを避けるのを二度以上実行するのを防ぎます。

function my_change_rewrite_base() {
    global $wp_rewrite;
    $bases = array(
        'author' => __('Author'), 
        'search' => __('Search'), 
        'comments' => __('Comments)', 
        'pagination' => __('Page')
    );

    foreach ($bases AS $key => $base) {
        $wp_rewrite->{$key} = remove_accents(mb_strtolower($base));
    }

    if ( ! get_option('my_change_rewrite_base_flushed', false) ) {
        flush_rewrite_rules();
        update_option( 'my_change_rewrite_base_flushed', time());
    }
}
add_action('init', 'my_change_rewrite_base');
1
ovitinho

以下は私のために働いた:

function nw_strana() {
    $GLOBALS['wp_rewrite']->pagination_base = 'strana';
}

add_action( 'init', 'nw_strana' );

function nw_rewrite( $rules ) {
    $new_rules = array(
        'obchod/strana/([0-9]{1,})/?$' => 'index.php?post_type=product&paged=$matches[1]',
    );

    $rules = array_merge( $new_rules, $rules );

    return $rules;
}

add_filter( 'rewrite_rules_array', 'nw_rewrite' );
0
michalzuber