ページリンクにカスタムタイトルを付ける方法


14

<! - nextpage ->コードを使用して、投稿コンテンツを複数のページに分割しました 。ページ分割されたリンクに、通常の1,2,3ではなく、独自のタイトルを付けたいと思います。これどうやってするの?このドキュメントhttps://codex.wordpress.org/Styling_Page-Linksでは、接尾辞または接頭辞を追加する方法についてのみ言及しています。各ページ番号に独自のカスタムタイトルを付けたいだけです。

回答:


17

フォームのページネーションタイトルをサポートする方法は次のとおりです。

<!--nextpage(.*?)?--> 

コアがサポートするのと同様の方法で<!--more(.*?)?-->

次に例を示します。

<!--nextpage Planets -->
Let's talk about the Planets
<!--nextpage Mercury -->
Exotic Mercury
<!--nextpage Venus-->
Beautiful Venus
<!--nextpage Earth -->
Our Blue Earth
<!--nextpage Mars -->
The Red Planet

出力は次のようになります。

ページネーションタイトル

これはTwenty Sixteenテーマでテストされました。そこでは、パディングを少し調整する必要がありました。

.page-links a, .page-links > span {
    width:   auto;
    padding: 0 5px;
}

デモプラグイン

ここでは、デモのプラグイン使用することだcontent_paginationwp_link_pages_linkpre_handle_404そしてwp_link_pages_argsこのextenstionサポートするためのフィルタをNEXTPAGEマーカー(PHPを5.4+):

<?php
/**
 * Plugin Name: Content Pagination Titles
 * Description: Support for &lt;!--nextpage(.*?)?--&gt; in the post content
 * Version:     1.0.1
 * Plugin URI:  http://wordpress.stackexchange.com/a/227022/26350
 */

namespace WPSE\Question202709;

add_action( 'init', function()
{
    $main = new Main;
    $main->init();
} );

class Main
{
    private $pagination_titles;

    public function init()
    {
        add_filter( 'pre_handle_404',       [ $this, 'pre_handle_404' ],        10, 2       );
        add_filter( 'content_pagination',   [ $this, 'content_pagination' ],    -1, 2       );
        add_filter( 'wp_link_pages_link',   [ $this, 'wp_link_pages_link' ],    10, 2       );
        add_filter( 'wp_link_pages_args',   [ $this, 'wp_link_pages_args' ],    PHP_INT_MAX );
    }

    public function content_pagination( $pages, $post )
    {
        // Empty content pagination titles for each run
        $this->pagination_titles = [];

        // Nothing to do if the post content doesn't contain pagination titles
        if( false === stripos( $post->post_content, '<!--nextpage' ) )
            return $pages;

        // Collect pagination titles
        preg_match_all( '/<!--nextpage(.*?)?-->/i', $post->post_content, $matches );
        if( isset( $matches[1] ) )
            $this->pagination_titles = $matches[1];     

        // Override $pages according to our new extended nextpage support
        $pages = preg_split( '/<!--nextpage(.*?)?-->/i', $post->post_content );

        // nextpage marker at the top
        if( isset( $pages[0] ) && '' == trim( $pages[0] ) )
        {
            // remove the empty page
            array_shift( $pages );
        }       
        // nextpage marker not at the top
        else
        {
            // add the first numeric pagination title 
            array_unshift( $this->pagination_titles, '1' );
        }           
        return $pages;
    }

    public function wp_link_pages_link( $link, $i )
    {
        if( ! empty( $this->pagination_titles ) )
        {
            $from  = '{{TITLE}}';
            $to    = ! empty( $this->pagination_titles[$i-1] ) ? $this->pagination_titles[$i-1] : $i;
            $link  = str_replace( $from, $to, $link );
        }

        return $link;
    }

    public function wp_link_pages_args( $params )
    {       
        if( ! empty( $this->pagination_titles ) )
        {
            $params['next_or_number'] = 'number';
            $params['pagelink'] = str_replace( '%', '{{TITLE}}', $params['pagelink'] );
        }
        return $params;
    }

    /**
     * Based on the nextpage check in WP::handle_404()
     */
    public function pre_handle_404( $bool, \WP_Query $q )
    {
        global $wp;

        if( $q->posts && is_singular() )
        {
            if ( $q->post instanceof \WP_Post ) 
                $p = clone $q->post;

            // check for paged content that exceeds the max number of pages
            $next = '<!--nextpage';
            if (   $p 
                 && false !== stripos( $p->post_content, $next ) 
                 && ! empty( $wp->query_vars['page'] ) 
            ) {
                $page = trim( $wp->query_vars['page'], '/' );
                $success = (int) $page <= ( substr_count( $p->post_content, $next ) + 1 );

                if ( $success )
                {
                    status_header( 200 );
                    $bool = true;
                }
            }
        }
        return $bool;
    }

} // end class

インストール/wp-content/plugins/content-pagination-titles/content-pagination-titles.phpファイルを作成し、プラグインをアクティブにします。プラグインをテストする前に、常にバックアップすることをお勧めします。

トップ場合NEXTPAGEマーカーが欠落している場合、最初のページネーションのタイトルは数値です。

また、コンテンツの改ページタイトルがない場合、つまり<!--nextpage-->、期待どおりに数値になります。

最初にクラスのnextpageのバグを忘れました。これWPは、content_paginationフィルターを介してページ数を変更すると表示されます。これは最近、@ PieterGoosenによって#35562で報告されました。

私たちは、と私たちのデモのプラグインであることを克服しようとpre_handle_404に基づいて、フィルタのコールバックWPクラスのチェックここで我々はチェックし、<!--nextpage代わりに<!--nextpage-->

テスト

以下にいくつかのテストを示します。

テスト#1

<!--nextpage-->
Let's talk about the Planets
<!--nextpage-->
Exotic Mercury
<!--nextpage-->
Beautiful Venus
<!--nextpage-->
Our Blue Earth
<!--nextpage-->
The Red Planet

選択した1の出力:

test1

予想通り。

テスト#2

Let's talk about the Planets
<!--nextpage-->
Exotic Mercury
<!--nextpage-->
Beautiful Venus
<!--nextpage-->
Our Blue Earth
<!--nextpage-->
The Red Planet

選択された5つの出力:

test2

予想通り。

テスト#3

<!--nextpage-->
Let's talk about the Planets
<!--nextpage Mercury-->
Exotic Mercury
<!--nextpage-->
Beautiful Venus
<!--nextpage Earth -->
Our Blue Earth
<!--nextpage Mars -->
The Red Planet

選択された3つの出力:

test3

予想通り。

テスト#4

Let's talk about the Planets
<!--nextpage Mercury-->
Exotic Mercury
<!--nextpage Venus-->
Beautiful Venus
<!--nextpage Earth -->
Our Blue Earth
<!--nextpage Mars -->
The Red Planet

Earthが選択された状態での出力:

test4

予想通り。

代替案

別の方法は、改ページタイトルをサポートするように変更することです:

<!--pt Earth-->

また、すべてのページネーションタイトル(pts)に対して単一のコメントをサポートすると便利な場合があります。

<!--pts Planets|Mercury|Venus|Earth|Mars -->

またはおそらくカスタムフィールド経由で?


これは興味深く、非常に動的に見えます。;-)
Pieter Goosen

+1のクロージャーテクニック;)それ以前は、apply_filter引数に限定されていることしか知りませんでした:D
Sumit

1
ここでWPSEに短いコードスニペットを書くときに便利ですが、適切なプラグインでこれをサポートするクラスを書くこともできます;-) @Sumit
birgire

@PieterGoosen #35562のバグを最初に忘れて、pre_handle_404フィルターで調整しようとしました。
ビルジール

@birgireその問題について考えましたが、その問題の影響を確認または無視するために何もテストできませんでした。私は、PCを必要としない他のプロジェクトに追いついています。バグは長期間残るようです。以前に新しいバージョンと古いバージョンでテストしましたが、結論は、誰かが適切な解決策を見つけるまで、バグの原因となっているコードをコアから削除できることです; ;-)
Pieter Goosen

5

フィルターを使用できます wp_link_pages_link

最初にカスタム文字列プレースホルダーを渡します(これは%、現在使用している文字列を含む文字列以外の任意のものです#custom_title#)。

wp_link_pages( array( 'pagelink' => '#custom_title#' ) );

次に、フィルタをに追加しますfunctions.php。コールバック関数で、タイトルの配列を作成し、現在のページ番号を確認して、現在のページ番号に#custom_title#対応する値に置き換えます。

例:-

add_filter('wp_link_pages_link', 'wp_link_pages_link_custom_title', 10, 2);
/**
 * Replace placeholder with custom titles
 * @param string $link Page link HTML
 * @param int $i Current page number
 * @return string $link Page link HTML
 */
function wp_link_pages_link_custom_title($link, $i) {

    //Define array of custom titles
    $custom_titles = array(
        __('Custom title A', 'text-domain'),
        __('Custom title B', 'text-domain'),
        __('Custom title C', 'text-domain'),
    );

    //Default title when title is not set in array
    $default_title = __('Page', 'text-domain') . ' ' . $i; 

    $i--; //Decrease the value by 1 because our array start with 0

    if (isset($custom_titles[$i])) { //Check if title exist in array if yes then replace it
        $link = str_replace('#custom_title#', $custom_titles[$i], $link);
    } else { //Replace with default title
        $link = str_replace('#custom_title#', $default_title, $link);
    }

    return $link;
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.