Changeset 2347
- Timestamp:
- 02/15/2005 06:52:38 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/template-functions-category.php
r2316 r2347 31 31 if ( empty($catlink) ) { 32 32 $file = get_settings('home') . '/' . get_settings('blogfilename'); 33 $catlink = $file . '?cat=' . $category_ ID;33 $catlink = $file . '?cat=' . $category_id; 34 34 } else { 35 35 if ($cache_categories[$category_id]->category_nicename) … … 44 44 $catlink = get_settings('home') . trailingslashit($catlink); 45 45 } 46 return $catlink;46 return apply_filters('category_link', $catlink, $category_id); 47 47 } 48 48
Note: See TracChangeset
for help on using the changeset viewer.