You appear to be a bot. Output may be restricted
Description
Usage
Tests_Template::test_taxonomy_template_hierarchy();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/template.php
Lines:
1 to 19 of 19
public function test_taxonomy_template_hierarchy() { $term = self::factory()->term->create_and_get( array( 'taxonomy' => 'taxo', 'slug' => 'foo-😀', ) ); $this->assertTemplateHierarchy( get_term_link( $term ), array( 'taxonomy-taxo-foo-😀.php', 'taxonomy-taxo-foo-%f0%9f%98%80.php', 'taxonomy-taxo.php', 'taxonomy.php', 'archive.php', ) ); }