web-dev-qa-db-ja.com

Get_objects_in_term()で公開された投稿のみを含むためのエレガンスな方法は?

明らかな方法は、結果として得られるIDの配列、それぞれのget_postを繰り返し処理し、post_status == 'publish'に対してテストすることです。しかし、get_postはデフォルトでそれぞれの結果をキャッシュしようと試みるので、これがメモリの問題を引き起こす可能性があるのだろうか?カスタムのSQL結合には至りませんが、get_objects_in_term()に渡すことができる驚きの引数はありますか。

1
Tom Auger

ステータスがpublishのオブジェクトのみを取得するためにクエリに'post_status' => 'publish'を追加することができます。これはget_postsquery_posts、または$wp_queryに対して機能し、argsリストにtax_queryを使用できるカスタム分類法も含めることができます。

3
hacksy

渡すことができる引数はありません。使用される唯一の引数はorderです。これが関数のソースです。

<?php
function get_objects_in_term( $term_ids, $taxonomies, $args = array() ) {
    global $wpdb;

    if ( ! is_array( $term_ids ) )
        $term_ids = array( $term_ids );

    if ( ! is_array( $taxonomies ) )
        $taxonomies = array( $taxonomies );

    foreach ( (array) $taxonomies as $taxonomy ) {
        if ( ! taxonomy_exists( $taxonomy ) )
            return new WP_Error( 'invalid_taxonomy', __( 'Invalid taxonomy' ) );
    }

    $defaults = array( 'order' => 'ASC' );
    $args = wp_parse_args( $args, $defaults );
    extract( $args, EXTR_SKIP );

    $order = ( 'desc' == strtolower( $order ) ) ? 'DESC' : 'ASC';

    $term_ids = array_map('intval', $term_ids );

    $taxonomies = "'" . implode( "', '", $taxonomies ) . "'";
    $term_ids = "'" . implode( "', '", $term_ids ) . "'";

    $object_ids = $wpdb->get_col("SELECT tr.object_id FROM $wpdb->term_relationships AS tr INNER JOIN $wpdb->term_taxonomy AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ($taxonomies) AND tt.term_id IN ($term_ids) ORDER BY tr.object_id $order");

    if ( ! $object_ids )
        return array();

    return $object_ids;
}

ただし、関数をコピーして追加の句を追加して、投稿ステータスを使用することはできます。

<?php
function wpse29749_get_objects_in_term( $term_ids, $taxonomies, $args = array() ) {
    global $wpdb;

    if ( ! is_array( $term_ids ) )
        $term_ids = array( $term_ids );

    if ( ! is_array( $taxonomies ) )
        $taxonomies = array( $taxonomies );

    foreach ( (array) $taxonomies as $taxonomy ) {
        if ( ! taxonomy_exists( $taxonomy ) )
            return new WP_Error( 'invalid_taxonomy', __( 'Invalid taxonomy' ) );
    }

    $defaults = array( 'post_status' => 'publish', 'order' => 'ASC' );
    $args = wp_parse_args( $args, $defaults );
    extract( $args, EXTR_SKIP );

    $order = ( 'desc' == strtolower( $order ) ) ? 'DESC' : 'ASC';

    $term_ids = array_map('intval', $term_ids );

    $taxonomies = "'" . implode( "', '", $taxonomies ) . "'";
    $term_ids = "'" . implode( "', '", $term_ids ) . "'";

    $object_ids = $wpdb->get_col( $wpdb->prepare(
        "SELECT ID from $wpdb->posts WHERE ID IN (
            SELECT tr.object_id FROM $wpdb->term_relationships
            AS tr INNER JOIN $wpdb->term_taxonomy AS tt
            ON tr.term_taxonomy_id = tt.term_taxonomy_id 
            WHERE tt.taxonomy IN ($taxonomies) 
            AND tt.term_id IN ($term_ids)
        ) AND post_status = %s
        ORDER BY ID $order", $post_status ) );

    if ( ! $object_ids )
        return array();

    return $object_ids;
}

大した違いはありません。 $defaults内の追加要素、およびSQLへのいくつかの変更。

2
chrisguitarguy