Changeset 14404 for trunk/wp-includes/taxonomy.php
- Timestamp:
- 05/03/2010 08:26:11 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/taxonomy.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r14234 r14404 70 70 * @param array $args An array of key => value arguments to match against the taxonomy objects. 71 71 * @param string $output The type of output to return, either taxonomy 'names' or 'objects'. 'names' is the default. 72 * @param string $operator The logical operation to perform. 'or' means only one element 72 * @param string $operator The logical operation to perform. 'or' means only one element 73 73 * from the array needs to match; 'and' means all elements must match. The default is 'and'. 74 74 * @return array A list of taxonomy names or objects … … 1572 1572 1573 1573 // Seems unreachable, However, Is used in the case that a term name is provided, which sanitizes to an empty string. 1574 if ( empty($slug) ) { 1574 if ( empty($slug) ) { 1575 1575 $slug = sanitize_title($slug, $term_id); 1576 1576 do_action( 'edit_terms', $term_id );
Note: See TracChangeset
for help on using the changeset viewer.