ID; if ( !isset($category_cache[$id]) ) update_post_category_cache($id); $categories = $category_cache[$id]; if ( !empty($categories) ) sort($categories); else $categories = array(); return $categories; } function get_category_link($category_id) { global $wp_rewrite; $catlink = $wp_rewrite->get_category_permastruct(); if ( empty($catlink) ) { $file = get_settings('home') . '/'; $catlink = $file . '?cat=' . $category_id; } else { $category = &get_category($category_id); $category_nicename = $category->category_nicename; if ( $parent = $category->category_parent ) $category_nicename = get_category_parents($parent, false, '/', true) . $category_nicename . '/'; $catlink = str_replace('%category%', $category_nicename, $catlink); $catlink = get_settings('home') . trailingslashit($catlink); } return apply_filters('category_link', $catlink, $category_id); } function get_the_category_list($separator = '', $parents='') { $categories = get_the_category(); if (empty($categories)) return apply_filters('the_category', __('Uncategorized'), $separator, $parents); $thelist = ''; if ( '' == $separator ) { $thelist .= ''; } else { $i = 0; foreach ( $categories as $category ) { if ( 0 < $i ) $thelist .= $separator . ' '; switch ( strtolower($parents) ) { case 'multiple': if ( $category->category_parent ) $thelist .= get_category_parents($category->category_parent, TRUE); $thelist .= 'cat_name) . '" rel="category tag">'.$category->cat_name.''; break; case 'single': $thelist .= 'cat_name) . '" rel="category tag">'; if ( $category->category_parent ) $thelist .= get_category_parents($category->category_parent, FALSE); $thelist .= "$category->cat_name"; break; case '': default: $thelist .= 'cat_name) . '" rel="category tag">'.$category->cat_name.''; } ++$i; } } return apply_filters('the_category', $thelist, $separator, $parents); } function the_category($separator = '', $parents='') { echo get_the_category_list($separator, $parents); } function get_the_category_by_ID($cat_ID) { $cat_ID = (int) $cat_ID; $category = &get_category($cat_ID); return $category->cat_name; } function get_category_parents($id, $link = FALSE, $separator = '/', $nicename = FALSE){ $chain = ''; $parent = &get_category($id); if ( $nicename ) $name = $parent->category_nicename; else $name = $parent->cat_name; if ( $parent->category_parent ) $chain .= get_category_parents($parent->category_parent, $link, $separator, $nicename); if ( $link ) $chain .= 'cat_name) . '">'.$name.'' . $separator; else $chain .= $name.$separator; return $chain; } function get_category_children($id, $before = '/', $after = '') { if ( 0 == $id ) return ''; $cat_ids = get_all_category_ids(); foreach ( $cat_ids as $cat_id ) { if ( $cat_id == $id) continue; $category = get_category($cat_id); if ( $category->category_parent == $id ) { $chain .= $before.$category->cat_ID.$after; $chain .= get_category_children($category->cat_ID, $before, $after); } } return $chain; } // Deprecated. function the_category_ID($echo = true) { // Grab the first cat in the list. $categories = get_the_category(); $cat = $categories[0]->cat_ID; if ( $echo ) echo $cat; return $cat; } // Deprecated. function the_category_head($before='', $after='') { global $currentcat, $previouscat; // Grab the first cat in the list. $categories = get_the_category(); $currentcat = $categories[0]->category_id; if ( $currentcat != $previouscat ) { echo $before; echo get_the_category_by_ID($currentcat); echo $after; $previouscat = $currentcat; } } function category_description($category = 0) { global $cat; if ( !$category ) $category = $cat; $category = & get_category($category); return apply_filters('category_description', $category->category_description, $category->cat_ID); } // out of the WordPress loop function dropdown_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc', $optiondates = 0, $optioncount = 0, $hide_empty = 1, $optionnone=FALSE, $selected=0, $hide=0) { global $wpdb; if ( ($file == 'blah') || ($file == '') ) $file = get_settings('home') . '/'; if ( !$selected ) $selected=$cat; $sort_column = 'cat_'.$sort_column; $query = " SELECT cat_ID, cat_name, category_nicename,category_parent, COUNT($wpdb->post2cat.post_id) AS cat_count, DAYOFMONTH(MAX(post_date)) AS lastday, MONTH(MAX(post_date)) AS lastmonth FROM $wpdb->categories LEFT JOIN $wpdb->post2cat ON (cat_ID = category_id) LEFT JOIN $wpdb->posts ON (ID = post_id) WHERE cat_ID > 0 "; if ( $hide ) { $query .= " AND cat_ID != $hide"; $query .= get_category_children($hide, " AND cat_ID != "); } $query .=" GROUP BY cat_ID"; if ( intval($hide_empty) == 1 ) $query .= " HAVING cat_count > 0"; $query .= " ORDER BY $sort_column $sort_order, post_date DESC"; $categories = $wpdb->get_results($query); echo "\n"; } // out of the WordPress loop function wp_list_cats($args = '') { parse_str($args, $r); if ( !isset($r['optionall'])) $r['optionall'] = 0; if ( !isset($r['all'])) $r['all'] = 'All'; if ( !isset($r['sort_column']) ) $r['sort_column'] = 'ID'; if ( !isset($r['sort_order']) ) $r['sort_order'] = 'asc'; if ( !isset($r['file']) ) $r['file'] = ''; if ( !isset($r['list']) ) $r['list'] = true; if ( !isset($r['optiondates']) ) $r['optiondates'] = 0; if ( !isset($r['optioncount']) ) $r['optioncount'] = 0; if ( !isset($r['hide_empty']) ) $r['hide_empty'] = 1; if ( !isset($r['use_desc_for_title']) ) $r['use_desc_for_title'] = 1; if ( !isset($r['child_of']) ) $r['child_of'] = 0; if ( !isset($r['feed']) ) $r['feed'] = ''; if ( !isset($r['feed_image']) ) $r['feed_image'] = ''; if ( !isset($r['exclude']) ) $r['exclude'] = ''; if ( !isset($r['hierarchical']) ) $r['hierarchical'] = false; if ( !isset($r['title_li']) ) $r['title_li'] = ''; $q['orderby'] = $r['sort_column']; $q['order'] = $r['sort_order']; $q['include_last_update_time'] = $r['optiondates']; extract($r); $args = add_query_arg($q, $args); $categories = get_categories($args); $output = ''; if ( $title_li && $list ) $output = '
  • ' . $r['title_li'] . '
  • '; echo apply_filters('list_cats', $output); } function _category_list_level_start($output, $depth, $cat, $args) { if (! $args['list']) return $output; $indent = str_repeat("\t", $depth); $output .= "$indent\n"; return $output; } function _category_list_element_start($output, $category, $depth, $current_category, $args) { extract($args); $link = 'category_description) ) $link .= 'title="'. sprintf(__("View all posts filed under %s"), wp_specialchars($category->cat_name)) . '"'; else $link .= 'title="' . wp_specialchars(apply_filters('category_description',$category->category_description,$category)) . '"'; $link .= '>'; $link .= apply_filters('list_cats', $category->cat_name, $category).''; if ( (! empty($feed_image)) || (! empty($feed)) ) { $link .= ' '; if ( empty($feed_image) ) $link .= '('; $link .= ''; else $link .= $name; $link .= ''; if (empty($feed_image)) $link .= ')'; } if ( intval($optioncount) == 1 ) $link .= ' ('.intval($category->category_count).')'; if ( $optiondates ) { if ( $optiondates == 1 ) $optiondates = 'Y-m-d'; $link .= ' ' . gmdate($optiondates,$category->last_update_timestamp); } if ( $list ) { $output .= "\tcat_ID == $current_category) && is_category() ) $output .= ' class="current-cat"'; $output .= ">$link\n"; } else { $output .= "\t$link
    \n"; } return $output; } function _category_list_element_end($output, $category, $depth, $cat, $args) { if (! $args['list']) return $output; $output .= "\n"; return $output; } function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_order = 'asc', $file = '', $list = true, $optiondates = 0, $optioncount = 0, $hide_empty = 1, $use_desc_for_title = 1, $children=FALSE, $child_of=0, $categories=0, $recurse=0, $feed = '', $feed_image = '', $exclude = '', $hierarchical=FALSE) { $query = "optionall=$optionall&all=$all&sort_column=$sort_column&sort_order=$sort_order&list=$list&optiondates=$optiondates&optioncount=$optioncount&hide_empty=$hide_empty&use_desc_for_title=$use_desc_for_title&child_of=$child_of&feed=$feed&feed_image=$feed_image&exclude=$exclude&hierarchical=$hierarchical"; return wp_list_cats($query); } function in_category($category) { // Check if the current post is in the given category global $category_cache, $post; if ( isset( $category_cache[$post->ID][$category] ) ) return true; else return false; } function &_get_cat_children($category_id, $categories) { if ( empty($categories) ) return array(); $category_list = array(); foreach ( $categories as $category ) { if ( $category->category_parent == $category_id ) { $category_list[] = $category; if ( $children = _get_cat_children($category->cat_ID, $categories) ) $category_list = array_merge($category_list, $children); } } return $category_list; } function &get_categories($args = '') { global $wpdb, $category_links; parse_str($args, $r); if ( !isset($r['type']) ) // 'post' or 'link' $r['type'] = 'post'; if ( !isset($r['child_of']) ) $r['child_of'] = 0; if ( !isset($r['orderby']) ) $r['orderby'] = 'name'; if ( !isset($r['order']) ) $r['order'] = 'ASC'; if ( !isset($r['hide_empty']) ) $r['hide_empty'] = true; if ( !isset($r['include_last_update_time']) ) $r['include_last_update_time'] = false; if ( !isset($r['hierarchical']) ) $r['hierarchical'] = 1; $r['orderby'] = "cat_" . $r['orderby']; extract($r); $exclusions = ''; $having = ''; $where = 'cat_ID > 0'; $exclusions = ''; if ( !empty($exclude) ) { $excategories = preg_split('/[\s,]+/',$exclude); if ( count($excategories) ) { foreach ( $excategories as $excat ) { $exclusions .= ' AND cat_ID <> ' . intval($excat) . ' '; } } } $exclusions = apply_filters('list_cats_exclusions', $exclusions ); $where .= $exclusions; if ( $hide_empty ) { if ( 'link' == $type ) $having = 'HAVING link_count > 0'; else $having = 'HAVING category_count > 0'; } $categories = $wpdb->get_results("SELECT * FROM $wpdb->categories WHERE $where $having ORDER BY $orderby $order"); if ( empty($categories) ) return array(); if ( $include_last_update_time ) { $stamps = $wpdb->get_results("SELECT category_id, UNIX_TIMESTAMP( MAX(post_date) ) AS ts FROM $wpdb->posts, $wpdb->post2cat, $wpdb->categories WHERE post_status = 'publish' AND post_id = ID AND $where GROUP BY category_id"); global $cat_stamps; foreach ($stamps as $stamp) $cat_stamps[$stamp->category_id] = $stamp->ts; function stamp_cat($cat) { global $cat_stamps; $cat->last_update_timestamp = $cat_stamps[$cat->cat_ID]; return $cat; } $categories = array_map('stamp_cat', $categories); unset($cat_stamps); } if ( $child_of || $hierarchical ) $categories = & _get_cat_children($child_of, $categories); return $categories; } ?>