Make WordPress Core


Ignore:
Timestamp:
10/28/2014 02:56:33 PM (10 years ago)
Author:
boonebgorges
Message:

Allow 'slug' param of get_terms() to accept an array.

Props jfarthing84, dlh.
Fixes #23636.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/term/getTerms.php

    r29845 r30042  
    353353    }
    354354
     355    public function test_get_terms_by_slug() {
     356        $t1 = $this->factory->tag->create( array( 'slug' => 'foo' ) );
     357        $t2 = $this->factory->tag->create( array( 'slug' => 'bar' ) );
     358
     359        $found = get_terms( 'post_tag', array(
     360            'hide_empty' => false,
     361            'fields' => 'ids',
     362            'slug' => 'foo',
     363        ) );
     364
     365        $this->assertEquals( array( $t1 ), $found );
     366    }
     367
     368    /**
     369     * @ticket 23636
     370     */
     371    public function test_get_terms_by_multiple_slugs() {
     372        $t1 = $this->factory->tag->create( array( 'slug' => 'foo' ) );
     373        $t2 = $this->factory->tag->create( array( 'slug' => 'bar' ) );
     374        $t3 = $this->factory->tag->create( array( 'slug' => 'barry' ) );
     375
     376        $found = get_terms( 'post_tag', array(
     377            'hide_empty' => false,
     378            'fields' => 'ids',
     379            'slug' => array( 'foo', 'barry' )
     380        ) );
     381
     382        $this->assertEquals( array( $t1, $t3 ), $found );
     383    }
     384
    355385    public function test_get_terms_hierarchical_tax_hide_empty_false_fields_ids() {
    356386        // Set up a clean taxonomy.
Note: See TracChangeset for help on using the changeset viewer.