クエリを並べ替えるときに、最初の記事(「a」、「an」、「the」など)を無視しますか?


13

私は現在、音楽タイトルのリストを出力しようとしていますが、タイトルの最初の記事をソートで無視するようにしたい(しかし、まだ表示したい)のです。

たとえば、バンドのリストがある場合、WordPressでは次のようにアルファベット順に表示されます。

  • ブラックサバス
  • レッド・ツェッペリン
  • ピンク・フロイド
  • ビートルズ
  • キンクス
  • ローリングストーン
  • 薄いリジー

代わりに、次のように最初の記事「The」を無視してアルファベット順に表示したいと思います。

  • ビートルズ
  • ブラックサバス
  • キンクス
  • レッド・ツェッペリン
  • ピンク・フロイド
  • ローリングストーン
  • 薄いリジー

昨年のブログエントリで解決策を見つけましたfunctions.php

function wpcf_create_temp_column($fields) {
  global $wpdb;
  $matches = 'The';
  $has_the = " CASE 
      WHEN $wpdb->posts.post_title regexp( '^($matches)[[:space:]]' )
        THEN trim(substr($wpdb->posts.post_title from 4)) 
      ELSE $wpdb->posts.post_title 
        END AS title2";
  if ($has_the) {
    $fields .= ( preg_match( '/^(\s+)?,/', $has_the ) ) ? $has_the : ", $has_the";
  }
  return $fields;
}

function wpcf_sort_by_temp_column ($orderby) {
  $custom_orderby = " UPPER(title2) ASC";
  if ($custom_orderby) {
    $orderby = $custom_orderby;
  }
  return $orderby;
}

そして、クエリをadd_filterbeforeとremove_filterafter でラップします。

私はこれを試しましたが、私のサイトで次のエラーが表示され続けます:

WordPressデータベースエラー:[「order句」の不明な列「title2」]

SELECT wp_posts。* FROM wp_posts WHERE 1 = 1 AND wp_posts.post_type = 'release' AND(wp_posts.post_status = 'publish' OR wp_posts.post_status = 'private')ORDER BY UPPER(title2)ASC

嘘をつくつもりはありません。WordPressのphpの部分はかなり新しいので、このエラーが発生する理由についてはわかりません。「title2」列と関係があることがわかりますが、最初の関数がそれを処理する必要があることは私の理解でした。また、これを行う賢い方法があれば、私はすべて耳にします。私はこのサイトをあちこち探して検索しましたが、実際には多くの解決策を見つけていません。

フィルターを使用する私のコードは、助けになると次のようになります。

<?php 
    $args_post = array('post_type' => 'release', 'orderby' => 'title', 'order' => 'ASC', 'posts_per_page' => -1, );

    add_filter('post_fields', 'wpcf_create_temp_column'); /* remove initial 'The' from post titles */
    add_filter('posts_orderby', 'wpcf_sort_by_temp_column');

    $loop = new WP_Query($args_post);

    remove_filter('post_fields', 'wpcf_create_temp_column');
    remove_filter('posts_orderby', 'wpcf_sort_by_temp_column');

        while ($loop->have_posts() ) : $loop->the_post();
?>

1
別の解決策として、並べ替えるタイトルを投稿メタデータとして保存し、タイトルではなくそのフィールドに順序を付けることができます。
ミロ

私はそれをどう進めるかについて少し確信が持てません。それを新しい列に保存すると、現在取得しているエラーと同様のエラーになりませんか?
-rpbtz

1
そのコードは使用しないので、メタクエリパラメータを使用してポストメタをクエリおよびソートできます。
ミロ

回答:


8

問題

私はそこにタイプミスがあると思います:

フィルタの名前はposts_fieldsありませんpost_fields

title2定義が生成されたSQL文字列に追加されないため、フィールドが不明である理由を説明できます。

代替-単一フィルター

単一のフィルターのみを使用するように書き換えることができます。

add_filter( 'posts_orderby', function( $orderby, \WP_Query $q )
{
    // Do nothing
    if( '_custom' !== $q->get( 'orderby' ) )
        return $orderby;

    global $wpdb;

    $matches = 'The';   // REGEXP is not case sensitive here

    // Custom ordering (SQL)
    return sprintf( 
        " 
        CASE 
            WHEN {$wpdb->posts}.post_title REGEXP( '^($matches)[[:space:]]+' )
                THEN TRIM( SUBSTR( {$wpdb->posts}.post_title FROM %d )) 
            ELSE {$wpdb->posts}.post_title 
        END %s
        ",
        strlen( $matches ) + 1,
        'ASC' === strtoupper( $q->get( 'order' ) ) ? 'ASC' : 'DESC'     
    );

}, 10, 2 );

ここで、_customorderbyパラメーターを使用してカスタム順序をアクティブにできます。

$args_post = array
    'post_type'      => 'release', 
    'orderby'        => '_custom',    // Activate the custom ordering 
    'order'          => 'ASC', 
    'posts_per_page' => -1, 
);

$loop = new WP_Query($args_post);

while ($loop->have_posts() ) : $loop->the_post();

代替-再帰的 TRIM()

ここコメントしPascal Birchlerによる再帰的なアイデアを実装しましょう。

add_filter( 'posts_orderby', function( $orderby, \WP_Query $q )
{
    if( '_custom' !== $q->get( 'orderby' ) )
        return $orderby;

    global $wpdb;

    // Adjust this to your needs:
    $matches = [ 'the ', 'an ', 'a ' ];

    return sprintf( 
        " %s %s ",
        wpse_sql( $matches, " LOWER( {$wpdb->posts}.post_title) " ),
        'ASC' === strtoupper( $q->get( 'order' ) ) ? 'ASC' : 'DESC'     
    );

}, 10, 2 );

ここで、たとえば次のように再帰関数を作成できます。

function wpse_sql( &$matches, $sql )
{
    if( empty( $matches ) || ! is_array( $matches ) )
        return $sql;

    $sql = sprintf( " TRIM( LEADING '%s' FROM ( %s ) ) ", $matches[0], $sql );
    array_shift( $matches );    
    return wpse_sql( $matches, $sql );
}

この意味は

$matches = [ 'the ', 'an ', 'a ' ];
echo wpse_sql( $matches, " LOWER( {$wpdb->posts}.post_title) " );

生成します:

TRIM( LEADING 'a ' FROM ( 
    TRIM( LEADING 'an ' FROM ( 
        TRIM( LEADING 'the ' FROM ( 
            LOWER( wp_posts.post_title) 
        ) )
    ) )
) )

代替-MariaDB

一般的に、MySQLの代わりにMariaDBを使用しますMariaDB 10.0.5 以下をサポートしているため、はるかに簡単ですREGEXP_REPLACE

/**
 * Ignore (the,an,a) in post title ordering
 *
 * @uses MariaDB 10.0.5+
 */
add_filter( 'posts_orderby', function( $orderby, \WP_Query $q )
{
    if( '_custom' !== $q->get( 'orderby' ) )
        return $orderby;

    global $wpdb;
    return sprintf( 
        " REGEXP_REPLACE( {$wpdb->posts}.post_title, '^(the|a|an)[[:space:]]+', '' ) %s",
        'ASC' === strtoupper( $q->get( 'order' ) ) ? 'ASC' : 'DESC'     
    );
}, 10, 2 );

私はこれが私のソリューションよりも優れた問題を解決すべきだと思う
ピーター・グーセン

あなたは絶対に正しかった-post_fieldsをposts_fieldsに変更することで問題が修正され、私が望むように正確にソートするようになりました。ありがとうございました!それが問題だったので、今は少し愚かに感じています。午前4時にコーディングすることでそれが得られると思います。単一のフィルターソリューションについても説明します。本当に良いアイデアのようです。再度、感謝します。
-rpbtz

これが最初の質問に最も密接に関連するものであるため、これを正しい答えとしてマークしますが、他の答えも有効な解決策であると言えます。
rpbtz

単一フィルターの代替品も同様に魅力的でした。これでフィルターコードを保持し、必要なときにfunctions.php呼び出すことorderbyができます。素晴らしい解決策-ありがとう:
rpbtz

1
それがあなたのために働いたことを聞いてうれしい-私は再帰的な方法を追加しました。@rpbtz
バージール

12

より簡単な方法は、パーマリンクスラッグを必要とするそれらのパーマリンクスラッグを変更して(ポストライティング画面のタイトルの下に)変更し、タイトルの代わりにそれを単に順序付けに使用することです。

すなわち。ソートに使用しpost_nameないpost_title...

これは、パーマリンク構造で%postname%を使用するとパーマリンクが異なる可能性があることも意味します。これは追加のボーナスになる可能性があります。

例えば。与えhttp://example.com/rolling-stones/ ないhttp://example.com/the-rolling-stones/

編集:既存のスラッグを更新し、post_name列から不要なプレフィックスを削除するコード...

global $wpdb;
$posttype = 'release';
$stripprefixes = array('a-','an-','the-');

$results = $wpdb->get_results("SELECT ID, post_name FROM ".$wpdb->prefix."posts" WHERE post_type = '".$posttype."' AND post_status = 'publish');
if (count($results) > 0) {
    foreach ($results as $result) {
        $postid = $result->ID;
        $postslug = $result->post_name;
        foreach ($stripprefixes as $stripprefix) {
            $checkprefix = strtolower(substr($postslug,0,strlen($stripprefix));
            if ($checkprefix == $stripprefix) {
                $newslug = substr($postslug,strlen($stripprefix),strlen($postslug));
                // echo $newslug; // debug point
                $query = $wpdb->prepare("UPDATE ".$wpdb->prefix."posts SET post_name = '%s' WHERE ID = '%d'", $newslug, $postid);
                $wpdb->query($query);
            }
        }
    }
}

優れたソリューション-ソートが非常にシンプルで効率的です。
BillK

@birgireのタイプミスの解決策は魅力的なものでしたが、これはまともな代替手段のようです。最初の記事があり、すべてのパーマリンクスラッグを変更するのに時間がかかるかもしれないという質問された投稿がかなりあるので、私は今のところ他のものに行きます。ただし、このソリューションのシンプルさが気に入っています。ありがとう:-)
rpbtz

1
気に入ったので、必要に応じてすべてのスラッグを変更するコードを追加しました。:-)
majick

6

編集

コードを少し改善しました。それに応じて、すべてのコードブロックが更新されます。ただし、元の回答の更新にジャンプする前に、次のコードで動作するようにコードを設定しました

  • カスタム投稿タイプ-> release

  • カスタム分類-> game

必要に応じて設定してください

元の回答

他の回答と@birgireが指摘したタイプミスに加えて、別のアプローチがあります。

最初に、タイトルを非表示のカスタムフィールドとして設定しますが、最初theに除外するような単語を削除します。それを行う前に、用語名と投稿タイトルから禁止された単語を削除するために、まずヘルパー関数を作成する必要があります

/**
 * Function get_name_banned_removed()
 *
 * A helper function to handle removing banned words
 * 
 * @param string $tring  String to remove banned words from
 * @param array  $banned Array of banned words to remove
 * @return string $string
 */
function get_name_banned_removed( $string = '', $banned = [] )
{
    // Make sure we have a $string to handle
    if ( !$string )
        return $string;

    // Sanitize the string
    $string = filter_var( $string, FILTER_SANITIZE_STRING );

    // Make sure we have an array of banned words
    if (    !$banned
         || !is_array( $banned )
    )
        return $string; 

    // Make sure that all banned words is lowercase
    $banned = array_map( 'strtolower', $banned );

    // Trim the string and explode into an array, remove banned words and implode
    $text          = trim( $string );
    $text          = strtolower( $text );
    $text_exploded = explode( ' ', $text );

    if ( in_array( $text_exploded[0], $banned ) )
        unset( $text_exploded[0] );

    $text_as_string = implode( ' ', $text_exploded );

    return $string = $text_as_string;
}

これでカバーできたので、カスタムフィールドを設定するコードを見てみましょう。ページを一度ロードしたらすぐに、このコードを完全に削除する必要があります。大量の投稿がある巨大なサイトがある場合は、すべての投稿にカスタムフィールドがすべての投稿に設定されるまで、posts_per_page何かに設定し100てスクリプトを数回実行できます。

add_action( 'wp', function ()
{
    add_filter( 'posts_fields', function ( $fields, \WP_Query $q ) 
    {
        global $wpdb;

        remove_filter( current_filter(), __FUNCTION__ );

        // Only target a query where the new custom_query parameter is set with a value of custom_meta_1
        if ( 'custom_meta_1' === $q->get( 'custom_query' ) ) {
            // Only get the ID and post title fields to reduce server load
            $fields = "$wpdb->posts.ID, $wpdb->posts.post_title";
        }

        return $fields;
    }, 10, 2);

    $args = [
        'post_type'        => 'release',       // Set according to needs
        'posts_per_page'   => -1,              // Set to execute smaller chucks per page load if necessary
        'suppress_filters' => false,           // Allow the posts_fields filter
        'custom_query'     => 'custom_meta_1', // New parameter to allow that our filter only target this query
        'meta_query'       => [
            [
                'key'      => '_custom_sort_post_title', // Make it a hidden custom field
                'compare'  => 'NOT EXISTS'
            ]
        ]
    ];
    $q = get_posts( $args );

    // Make sure we have posts before we continue, if not, bail
    if ( !$q ) 
        return;

    foreach ( $q as $p ) {
        $new_post_title = strtolower( $p->post_title );

        if ( function_exists( 'get_name_banned_removed' ) )
            $new_post_title = get_name_banned_removed( $new_post_title, ['the'] );

        // Set our custom field value
        add_post_meta( 
            $p->ID,                    // Post ID
            '_custom_sort_post_title', // Custom field name
            $new_post_title            // Custom field value
        );  
    } //endforeach $q
});

カスタムフィールドがすべての投稿に設定され、上記のコードが削除されたので、このカスタムフィールドをすべての新しい投稿に設定するか、投稿のタイトルを更新するたびに設定する必要があります。このために、transition_post_statusフックを使用します。次のコードは、プラグイン(推奨)またはfunctions.php

add_action( 'transition_post_status', function ( $new_status, $old_status, $post )
{
    // Make sure we only run this for the release post type
    if ( 'release' !== $post->post_type )
        return;

    $text = strtolower( $post->post_title );   

    if ( function_exists( 'get_name_banned_removed' ) )
        $text = get_name_banned_removed( $text, ['the'] );

    // Set our custom field value
    update_post_meta( 
        $post->ID,                 // Post ID
        '_custom_sort_post_title', // Custom field name
        $text                      // Custom field value
    );
}, 10, 3 );

投稿のクエリ

カスタムフィルタなしで、通常どおりクエリを実行できます。次のように投稿をクエリおよびソートできます

$args_post = [
    'post_type'      => 'release', 
    'orderby'        => 'meta_value', 
    'meta_key'       => '_custom_sort_post_title',
    'order'          => 'ASC', 
    'posts_per_page' => -1, 
];
$loop = new WP_Query( $args );

私はこのアプローチが好きです(タイトルの冒頭から禁止された単語を削除するのに十分かもしれません)
birgire

@birgire私はこれを使っただけでした。なぜなら、私のSQLの知識は教会のマウスとしては貧弱だからです(笑)。タイプミスをありがとう
Pieter Goosen

1
機知に富んだマウスは、ハードコーディングされたSQLエレファントよりもはるかに機敏です;-)
birgire

0

birgireの回答は、このフィールドのみで注文した場合に有効です。複数のフィールドで注文するときに機能するようにいくつかの変更を加えました(タイトルの順序が主要なものである場合に正しく機能するかどうかはわかりません)。

add_filter( 'posts_orderby', function( $orderby, \WP_Query $q )
{
// Do nothing
if( '_custom' !== $q->get( 'orderby' ) && !isset($q->get( 'orderby' )['_custom']) )
    return $orderby;

global $wpdb;

$matches = 'The';   // REGEXP is not case sensitive here

// Custom ordering (SQL)
if (is_array($q->get( 'orderby' ))) {
    return sprintf( 
        " $orderby, 
        CASE 
            WHEN {$wpdb->posts}.post_title REGEXP( '^($matches)[[:space:]]+' )
                THEN TRIM( SUBSTR( {$wpdb->posts}.post_title FROM %d )) 
            ELSE {$wpdb->posts}.post_title 
        END %s
        ",
        strlen( $matches ) + 1,
        'ASC' === strtoupper( $q->get( 'orderby' )['_custom'] ) ? 'ASC' : 'DESC'     
    );
}
else {
    return sprintf( 
        "
        CASE 
            WHEN {$wpdb->posts}.post_title REGEXP( '^($matches)[[:space:]]+' )
                THEN TRIM( SUBSTR( {$wpdb->posts}.post_title FROM %d )) 
            ELSE {$wpdb->posts}.post_title 
        END %s
        ",
        strlen( $matches ) + 1,
        'ASC' === strtoupper( $q->get( 'order' ) ) ? 'ASC' : 'DESC'     
    );
}

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