Changeset 5910 for trunk/wp-includes/deprecated.php
- Timestamp:
- 08/21/2007 06:27:45 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/deprecated.php
r5569 r5910 237 237 if ( !$cat ) 238 238 return false; 239 $cat_id = $cat->term_id; 239 $cat_id = $cat->term_id; 240 240 241 241 $args = add_query_arg('category', $cat_id, $args); … … 267 267 $cat = get_term_by('name', $cat_name, 'link_category'); 268 268 if ( $cat ) 269 $cat_id = $cat->term_id; 269 $cat_id = $cat->term_id; 270 270 271 271 return get_linkobjects($cat_id, $orderby, $limit); … … 315 315 $links_array = array(); 316 316 foreach ($links as $link) { 317 $links_array[] = $link; 317 $links_array[] = $link; 318 318 } 319 319 … … 485 485 } 486 486 487 // Use the_permalink_rss() 488 function permalink_single_rss($file = '') { 489 the_permalink_rss(); 490 } 491 487 492 ?>
Note: See TracChangeset
for help on using the changeset viewer.