2004-01-27 10:58:01 +01:00
< ? php
2006-06-04 23:36:52 +02:00
function get_category_children ( $id , $before = '/' , $after = '' ) {
if ( 0 == $id )
return '' ;
2006-10-03 17:41:44 +02:00
$chain = '' ;
2007-05-23 20:59:12 +02:00
// TODO: consult hierarchy
2006-06-04 23:36:52 +02:00
$cat_ids = get_all_category_ids ();
foreach ( $cat_ids as $cat_id ) {
2007-05-23 20:59:12 +02:00
if ( $cat_id == $id )
2006-06-04 23:36:52 +02:00
continue ;
$category = get_category ( $cat_id );
2007-09-18 18:32:22 +02:00
if ( is_wp_error ( $category ) )
return $category ;
2007-05-23 20:07:53 +02:00
if ( $category -> parent == $id ) {
$chain .= $before . $category -> term_id . $after ;
$chain .= get_category_children ( $category -> term_id , $before , $after );
2006-06-04 23:36:52 +02:00
}
}
return $chain ;
2006-04-13 06:40:48 +02:00
}
2006-06-04 23:36:52 +02:00
function get_category_link ( $category_id ) {
global $wp_rewrite ;
$catlink = $wp_rewrite -> get_category_permastruct ();
if ( empty ( $catlink ) ) {
2006-08-30 23:46:31 +02:00
$file = get_option ( 'home' ) . '/' ;
2006-06-04 23:36:52 +02:00
$catlink = $file . '?cat=' . $category_id ;
} else {
$category = & get_category ( $category_id );
2007-09-18 18:32:22 +02:00
if ( is_wp_error ( $category ) )
return $category ;
2007-05-23 20:07:53 +02:00
$category_nicename = $category -> slug ;
2006-06-04 23:36:52 +02:00
2007-05-23 20:07:53 +02:00
if ( $parent = $category -> parent )
2007-02-15 08:07:12 +01:00
$category_nicename = get_category_parents ( $parent , false , '/' , true ) . $category_nicename ;
2006-06-04 23:36:52 +02:00
$catlink = str_replace ( '%category%' , $category_nicename , $catlink );
2007-03-10 07:18:43 +01:00
$catlink = get_option ( 'home' ) . user_trailingslashit ( $catlink , 'category' );
2006-06-04 23:36:52 +02:00
}
return apply_filters ( 'category_link' , $catlink , $category_id );
}
function get_category_parents ( $id , $link = FALSE , $separator = '/' , $nicename = FALSE ){
$chain = '' ;
$parent = & get_category ( $id );
2007-09-18 18:32:22 +02:00
if ( is_wp_error ( $parent ) )
return $parent ;
2006-06-04 23:36:52 +02:00
if ( $nicename )
2007-05-23 20:07:53 +02:00
$name = $parent -> slug ;
2006-06-04 23:36:52 +02:00
else
$name = $parent -> cat_name ;
2007-05-23 20:07:53 +02:00
if ( $parent -> parent && ( $parent -> parent != $parent -> term_id ) )
$chain .= get_category_parents ( $parent -> parent , $link , $separator , $nicename );
2006-06-04 23:36:52 +02:00
if ( $link )
2007-05-23 20:07:53 +02:00
$chain .= '<a href="' . get_category_link ( $parent -> term_id ) . '" title="' . sprintf ( __ ( " View all posts in %s " ), $parent -> cat_name ) . '">' . $name . '</a>' . $separator ;
2006-06-04 23:36:52 +02:00
else
$chain .= $name . $separator ;
return $chain ;
2006-04-13 06:40:48 +02:00
}
2004-06-04 04:36:46 +02:00
function get_the_category ( $id = false ) {
2008-01-04 20:36:34 +01:00
global $post ;
2004-06-04 04:36:46 +02:00
2007-03-22 21:52:29 +01:00
$id = ( int ) $id ;
2005-03-01 10:10:12 +01:00
if ( ! $id )
2007-03-23 03:16:16 +01:00
$id = ( int ) $post -> ID ;
2004-06-04 04:36:46 +02:00
2007-05-31 23:38:33 +02:00
$categories = get_object_term_cache ( $id , 'category' );
2007-05-30 05:36:59 +02:00
if ( false === $categories )
2007-06-19 02:33:44 +02:00
$categories = wp_get_object_terms ( $id , 'category' );
2004-11-13 00:08:51 +01:00
2005-10-12 19:01:50 +02:00
if ( ! empty ( $categories ) )
2007-05-29 06:54:45 +02:00
usort ( $categories , '_usort_terms_by_name' );
2005-03-01 10:10:12 +01:00
else
$categories = array ();
2004-11-15 07:00:21 +01:00
2007-08-18 19:21:51 +02:00
foreach ( array_keys ( $categories ) as $key ) {
_make_cat_compat ( $categories [ $key ]);
}
2005-03-01 10:10:12 +01:00
return $categories ;
2004-01-27 10:58:01 +01:00
}
2007-05-29 06:54:45 +02:00
function _usort_terms_by_name ( $a , $b ) {
return strcmp ( $a -> name , $b -> name );
}
2007-09-04 01:32:58 +02:00
function _usort_terms_by_ID ( $a , $b ) {
if ( $a -> term_id > $b -> term_id )
return 1 ;
elseif ( $a -> term_id < $b -> term_id )
return - 1 ;
else
return 0 ;
2007-02-21 03:13:47 +01:00
}
2006-06-04 23:36:52 +02:00
function get_the_category_by_ID ( $cat_ID ) {
$cat_ID = ( int ) $cat_ID ;
$category = & get_category ( $cat_ID );
2007-09-18 18:32:22 +02:00
if ( is_wp_error ( $category ) )
return $category ;
2007-05-23 20:07:53 +02:00
return $category -> name ;
2004-01-27 10:58:01 +01:00
}
2005-02-25 16:50:55 +01:00
function get_the_category_list ( $separator = '' , $parents = '' ) {
2007-01-23 09:21:28 +01:00
global $wp_rewrite ;
2005-10-12 19:01:50 +02:00
$categories = get_the_category ();
if ( empty ( $categories ))
return apply_filters ( 'the_category' , __ ( 'Uncategorized' ), $separator , $parents );
2007-01-23 09:21:28 +01:00
$rel = ( is_object ( $wp_rewrite ) && $wp_rewrite -> using_permalinks () ) ? 'rel="category tag"' : 'rel="category"' ;
2005-10-12 19:01:50 +02:00
$thelist = '' ;
if ( '' == $separator ) {
$thelist .= '<ul class="post-categories">' ;
foreach ( $categories as $category ) {
$thelist .= " \n \t <li> " ;
switch ( strtolower ( $parents ) ) {
case 'multiple' :
2007-05-23 20:07:53 +02:00
if ( $category -> parent )
$thelist .= get_category_parents ( $category -> parent , TRUE );
$thelist .= '<a href="' . get_category_link ( $category -> term_id ) . '" title="' . sprintf ( __ ( " View all posts in %s " ), $category -> name ) . '" ' . $rel . '>' . $category -> name . '</a></li>' ;
2005-10-12 19:01:50 +02:00
break ;
case 'single' :
2007-05-23 20:07:53 +02:00
$thelist .= '<a href="' . get_category_link ( $category -> term_id ) . '" title="' . sprintf ( __ ( " View all posts in %s " ), $category -> name ) . '" ' . $rel . '>' ;
if ( $category -> parent )
$thelist .= get_category_parents ( $category -> parent , FALSE );
$thelist .= $category -> name . '</a></li>' ;
2005-10-12 19:01:50 +02:00
break ;
case '' :
default :
2007-05-23 20:07:53 +02:00
$thelist .= '<a href="' . get_category_link ( $category -> term_id ) . '" title="' . sprintf ( __ ( " View all posts in %s " ), $category -> name ) . '" ' . $rel . '>' . $category -> cat_name . '</a></li>' ;
2005-10-12 19:01:50 +02:00
}
}
$thelist .= '</ul>' ;
} else {
$i = 0 ;
foreach ( $categories as $category ) {
if ( 0 < $i )
$thelist .= $separator . ' ' ;
switch ( strtolower ( $parents ) ) {
case 'multiple' :
2007-05-23 20:07:53 +02:00
if ( $category -> parent )
$thelist .= get_category_parents ( $category -> parent , TRUE );
$thelist .= '<a href="' . get_category_link ( $category -> term_id ) . '" title="' . sprintf ( __ ( " View all posts in %s " ), $category -> name ) . '" ' . $rel . '>' . $category -> cat_name . '</a>' ;
2005-10-12 19:01:50 +02:00
break ;
case 'single' :
2007-05-23 20:07:53 +02:00
$thelist .= '<a href="' . get_category_link ( $category -> term_id ) . '" title="' . sprintf ( __ ( " View all posts in %s " ), $category -> name ) . '" ' . $rel . '>' ;
if ( $category -> parent )
$thelist .= get_category_parents ( $category -> parent , FALSE );
2005-10-12 19:01:50 +02:00
$thelist .= " $category->cat_name </a> " ;
break ;
case '' :
default :
2007-05-23 20:07:53 +02:00
$thelist .= '<a href="' . get_category_link ( $category -> term_id ) . '" title="' . sprintf ( __ ( " View all posts in %s " ), $category -> name ) . '" ' . $rel . '>' . $category -> name . '</a>' ;
2005-10-12 19:01:50 +02:00
}
++ $i ;
}
}
return apply_filters ( 'the_category' , $thelist , $separator , $parents );
2005-02-25 16:50:55 +01:00
}
2007-06-13 02:16:33 +02:00
function in_category ( $category ) { // Check if the current post is in the given category
2007-12-06 20:49:33 +01:00
global $post ;
2005-10-12 19:01:50 +02:00
2007-08-14 05:01:26 +02:00
$categories = get_object_term_cache ( $post -> ID , 'category' );
if ( false === $categories )
2007-08-15 23:54:02 +02:00
$categories = wp_get_object_terms ( $post -> ID , 'category' );
2007-08-14 05:01:26 +02:00
if ( array_key_exists ( $category , $categories ))
2006-06-04 23:36:52 +02:00
return true ;
2005-10-12 19:01:50 +02:00
else
2006-06-04 23:36:52 +02:00
return false ;
2004-01-27 10:58:01 +01:00
}
2006-06-04 23:36:52 +02:00
function the_category ( $separator = '' , $parents = '' ) {
echo get_the_category_list ( $separator , $parents );
2004-01-27 10:58:01 +01:00
}
function category_description ( $category = 0 ) {
2005-10-12 19:01:50 +02:00
global $cat ;
if ( ! $category )
$category = $cat ;
2007-06-06 18:13:12 +02:00
return get_term_field ( 'description' , $category , 'category' );
2004-01-27 10:58:01 +01:00
}
2006-03-02 05:51:24 +01:00
function wp_dropdown_categories ( $args = '' ) {
2007-05-11 05:10:05 +02:00
$defaults = array (
2007-09-04 01:32:58 +02:00
'show_option_all' => '' , 'show_option_none' => '' ,
'orderby' => 'ID' , 'order' => 'ASC' ,
'show_last_update' => 0 , 'show_count' => 0 ,
'hide_empty' => 1 , 'child_of' => 0 ,
'exclude' => '' , 'echo' => 1 ,
'selected' => 0 , 'hierarchical' => 0 ,
2008-01-30 21:07:52 +01:00
'name' => 'cat' , 'class' => 'postform' ,
'depth' => 0
2007-05-11 05:10:05 +02:00
);
2007-06-14 04:25:30 +02:00
2006-08-31 23:36:21 +02:00
$defaults [ 'selected' ] = ( is_category () ) ? get_query_var ( 'cat' ) : 0 ;
2007-06-14 04:25:30 +02:00
2007-05-11 05:10:05 +02:00
$r = wp_parse_args ( $args , $defaults );
2006-03-02 05:51:24 +01:00
$r [ 'include_last_update_time' ] = $r [ 'show_last_update' ];
2007-05-11 05:10:05 +02:00
extract ( $r );
2006-03-02 05:51:24 +01:00
2006-03-02 06:47:59 +01:00
$categories = get_categories ( $r );
2006-03-02 05:51:24 +01:00
$output = '' ;
if ( ! empty ( $categories ) ) {
2006-12-02 00:00:04 +01:00
$output = " <select name=' $name ' id=' $name ' class=' $class '> \n " ;
2006-03-02 05:51:24 +01:00
if ( $show_option_all ) {
$show_option_all = apply_filters ( 'list_cats' , $show_option_all );
$output .= " \t <option value='0'> $show_option_all </option> \n " ;
}
2006-11-19 08:56:05 +01:00
if ( $show_option_none ) {
$show_option_none = apply_filters ( 'list_cats' , $show_option_none );
2006-03-02 05:51:24 +01:00
$output .= " \t <option value='-1'> $show_option_none </option> \n " ;
2005-10-12 19:01:50 +02:00
}
2006-03-02 05:51:24 +01:00
if ( $hierarchical )
2008-01-31 01:58:54 +01:00
$depth = $r [ 'depth' ]; // Walk the full depth.
2006-03-02 05:51:24 +01:00
else
$depth = - 1 ; // Flat.
2006-04-13 06:40:48 +02:00
$output .= walk_category_dropdown_tree ( $categories , $depth , $r );
2006-03-02 05:51:24 +01:00
$output .= " </select> \n " ;
2005-10-12 19:01:50 +02:00
}
2006-03-02 05:51:24 +01:00
$output = apply_filters ( 'wp_dropdown_cats' , $output );
if ( $echo )
echo $output ;
return $output ;
}
function wp_list_categories ( $args = '' ) {
2007-05-11 05:10:05 +02:00
$defaults = array (
2007-09-04 01:32:58 +02:00
'show_option_all' => '' , 'orderby' => 'name' ,
'order' => 'ASC' , 'show_last_update' => 0 ,
'style' => 'list' , 'show_count' => 0 ,
'hide_empty' => 1 , 'use_desc_for_title' => 1 ,
2007-12-06 20:58:15 +01:00
'child_of' => 0 , 'feed' => '' , 'feed_type' => '' ,
2007-09-04 01:32:58 +02:00
'feed_image' => '' , 'exclude' => '' ,
2007-09-12 04:53:27 +02:00
'hierarchical' => true , 'title_li' => __ ( 'Categories' ),
2008-01-10 22:51:00 +01:00
'echo' => 1 , 'depth' => 0
2007-05-11 05:10:05 +02:00
);
2007-06-14 04:25:30 +02:00
2007-05-11 05:10:05 +02:00
$r = wp_parse_args ( $args , $defaults );
2007-06-14 04:25:30 +02:00
2007-05-11 05:10:05 +02:00
if ( ! isset ( $r [ 'pad_counts' ] ) && $r [ 'show_count' ] && $r [ 'hierarchical' ] ) {
2007-01-09 09:45:05 +01:00
$r [ 'pad_counts' ] = true ;
2007-05-11 05:10:05 +02:00
}
2007-06-14 04:25:30 +02:00
2007-05-11 05:10:05 +02:00
if ( isset ( $r [ 'show_date' ] ) ) {
2006-09-20 01:56:28 +02:00
$r [ 'include_last_update_time' ] = $r [ 'show_date' ];
2007-05-11 05:10:05 +02:00
}
2007-06-14 04:25:30 +02:00
2007-05-11 05:10:05 +02:00
extract ( $r );
2007-06-14 04:25:30 +02:00
2006-03-02 06:47:59 +01:00
$categories = get_categories ( $r );
2006-11-19 08:56:05 +01:00
2006-03-01 14:30:19 +01:00
$output = '' ;
2006-06-17 02:05:00 +02:00
if ( $title_li && 'list' == $style )
2006-03-01 14:30:19 +01:00
$output = '<li class="categories">' . $r [ 'title_li' ] . '<ul>' ;
if ( empty ( $categories ) ) {
2007-01-19 21:58:56 +01:00
if ( 'list' == $style )
2006-03-01 14:30:19 +01:00
$output .= '<li>' . __ ( " No categories " ) . '</li>' ;
else
$output .= __ ( " No categories " );
} else {
global $wp_query ;
2007-06-14 04:25:30 +02:00
2007-04-14 01:20:14 +02:00
if ( ! empty ( $show_option_all ) )
2007-09-04 01:32:58 +02:00
if ( 'list' == $style )
2007-04-14 01:20:14 +02:00
$output .= '<li><a href="' . get_bloginfo ( 'url' ) . '">' . $show_option_all . '</a></li>' ;
else
$output .= '<a href="' . get_bloginfo ( 'url' ) . '">' . $show_option_all . '</a>' ;
2007-06-14 04:25:30 +02:00
2006-12-01 19:55:27 +01:00
if ( is_category () )
$r [ 'current_category' ] = $wp_query -> get_queried_object_id ();
2006-03-01 14:30:19 +01:00
if ( $hierarchical )
2008-01-10 22:51:00 +01:00
$depth = $r [ 'depth' ];
2006-03-01 14:30:19 +01:00
else
$depth = - 1 ; // Flat.
2006-04-13 06:40:48 +02:00
$output .= walk_category_tree ( $categories , $depth , $r );
2004-04-30 20:28:50 +02:00
}
2006-06-17 02:05:00 +02:00
if ( $title_li && 'list' == $style )
2006-03-01 14:30:19 +01:00
$output .= '</ul></li>' ;
2006-11-19 08:56:05 +01:00
2007-09-12 04:53:27 +02:00
$output = apply_filters ( 'wp_list_categories' , $output );
if ( $echo )
echo $output ;
else
return $output ;
2006-03-01 14:30:19 +01:00
}
2005-08-31 01:25:34 +02:00
2007-04-10 21:52:15 +02:00
function wp_tag_cloud ( $args = '' ) {
$defaults = array (
2007-09-04 01:32:58 +02:00
'smallest' => 8 , 'largest' => 22 , 'unit' => 'pt' , 'number' => 45 ,
2007-04-10 21:52:15 +02:00
'format' => 'flat' , 'orderby' => 'name' , 'order' => 'ASC' ,
'exclude' => '' , 'include' => ''
);
$args = wp_parse_args ( $args , $defaults );
$tags = get_tags ( array_merge ( $args , array ( 'orderby' => 'count' , 'order' => 'DESC' )) ); // Always query top tags
if ( empty ( $tags ) )
return ;
$return = wp_generate_tag_cloud ( $tags , $args ); // Here's where those top tags get sorted according to $args
2008-01-14 23:35:43 +01:00
2007-09-18 18:32:22 +02:00
if ( is_wp_error ( $return ) )
return false ;
2008-01-14 23:35:43 +01:00
$return = apply_filters ( 'wp_tag_cloud' , $return , $args );
if ( 'array' == $args [ 'format' ] )
return $return ;
echo $return ;
2007-04-10 21:52:15 +02:00
}
// $tags = prefetched tag array ( get_tags() )
// $args['format'] = 'flat' => whitespace separated, 'list' => UL, 'array' => array()
// $args['orderby'] = 'name', 'count'
function wp_generate_tag_cloud ( $tags , $args = '' ) {
global $wp_rewrite ;
$defaults = array (
'smallest' => 8 , 'largest' => 22 , 'unit' => 'pt' , 'number' => 45 ,
'format' => 'flat' , 'orderby' => 'name' , 'order' => 'ASC'
);
$args = wp_parse_args ( $args , $defaults );
extract ( $args );
if ( ! $tags )
return ;
$counts = $tag_links = array ();
foreach ( ( array ) $tags as $tag ) {
2007-05-23 05:57:20 +02:00
$counts [ $tag -> name ] = $tag -> count ;
$tag_links [ $tag -> name ] = get_tag_link ( $tag -> term_id );
2007-09-18 18:32:22 +02:00
if ( is_wp_error ( $tag_links [ $tag -> name ] ) )
return $tag_links [ $tag -> name ];
2007-08-23 00:28:00 +02:00
$tag_ids [ $tag -> name ] = $tag -> term_id ;
2007-04-10 21:52:15 +02:00
}
$min_count = min ( $counts );
$spread = max ( $counts ) - $min_count ;
if ( $spread <= 0 )
$spread = 1 ;
$font_spread = $largest - $smallest ;
if ( $font_spread <= 0 )
$font_spread = 1 ;
$font_step = $font_spread / $spread ;
// SQL cannot save you; this is a second (potentially different) sort on a subset of data.
if ( 'name' == $orderby )
uksort ( $counts , 'strnatcasecmp' );
else
asort ( $counts );
if ( 'DESC' == $order )
2007-07-12 18:00:51 +02:00
$counts = array_reverse ( $counts , true );
2008-02-13 20:12:46 +01:00
elseif ( 'RAND' == $order ) {
$keys = array_rand ( $counts , count ( $counts ) );
foreach ( $keys as $key )
$temp [ $key ] = $counts [ $key ];
$counts = $temp ;
unset ( $temp );
}
2007-04-10 21:52:15 +02:00
$a = array ();
$rel = ( is_object ( $wp_rewrite ) && $wp_rewrite -> using_permalinks () ) ? ' rel="tag"' : '' ;
foreach ( $counts as $tag => $count ) {
2007-08-23 00:28:00 +02:00
$tag_id = $tag_ids [ $tag ];
2007-04-10 21:52:15 +02:00
$tag_link = clean_url ( $tag_links [ $tag ]);
$tag = str_replace ( ' ' , ' ' , wp_specialchars ( $tag ));
2007-10-12 21:49:25 +02:00
$a [] = " <a href=' $tag_link ' class='tag-link- $tag_id ' title=' " . attribute_escape ( sprintf ( __ngettext ( '%d topic' , '%d topics' , $count ), $count ) ) . " ' $rel style='font-size: " .
2007-04-10 21:52:15 +02:00
( $smallest + ( ( $count - $min_count ) * $font_step ) )
. " $unit ;'> $tag </a> " ;
}
switch ( $format ) :
case 'array' :
$return =& $a ;
break ;
case 'list' :
$return = " <ul class='wp-tag-cloud'> \n \t <li> " ;
$return .= join ( " </li> \n \t <li> " , $a );
$return .= " </li> \n </ul> \n " ;
break ;
default :
$return = join ( " \n " , $a );
break ;
endswitch ;
return apply_filters ( 'wp_generate_tag_cloud' , $return , $tags , $args );
}
2006-06-04 23:36:52 +02:00
//
// Helper functions
//
2006-03-01 14:30:19 +01:00
2006-06-04 23:36:52 +02:00
function walk_category_tree () {
$walker = new Walker_Category ;
$args = func_get_args ();
return call_user_func_array ( array ( & $walker , 'walk' ), $args );
2006-03-01 14:30:19 +01:00
}
2006-06-04 23:36:52 +02:00
function walk_category_dropdown_tree () {
$walker = new Walker_CategoryDropdown ;
$args = func_get_args ();
return call_user_func_array ( array ( & $walker , 'walk' ), $args );
2006-02-27 05:57:30 +01:00
}
2007-04-10 23:23:11 +02:00
//
// Tags
//
function get_tag_link ( $tag_id ) {
global $wp_rewrite ;
2007-05-23 05:57:20 +02:00
$taglink = $wp_rewrite -> get_tag_permastruct ();
2007-04-10 23:23:11 +02:00
2007-05-23 05:57:20 +02:00
$tag = & get_term ( $tag_id , 'post_tag' );
2007-09-18 18:32:22 +02:00
if ( is_wp_error ( $tag ) )
return $tag ;
2007-05-23 05:57:20 +02:00
$slug = $tag -> slug ;
2007-04-10 23:23:11 +02:00
2007-05-25 18:27:34 +02:00
if ( empty ( $taglink ) ) {
2007-04-10 23:23:11 +02:00
$file = get_option ( 'home' ) . '/' ;
2007-05-23 05:57:20 +02:00
$taglink = $file . '?tag=' . $slug ;
2007-04-10 23:23:11 +02:00
} else {
2007-05-23 05:57:20 +02:00
$taglink = str_replace ( '%tag%' , $slug , $taglink );
$taglink = get_option ( 'home' ) . user_trailingslashit ( $taglink , 'category' );
2007-04-10 23:23:11 +02:00
}
2007-05-23 05:57:20 +02:00
return apply_filters ( 'tag_link' , $taglink , $tag_id );
2007-04-10 23:23:11 +02:00
}
function get_the_tags ( $id = 0 ) {
2007-09-04 01:32:58 +02:00
global $post ;
2007-06-14 04:25:30 +02:00
2007-04-10 23:23:11 +02:00
$id = ( int ) $id ;
2007-09-04 01:32:58 +02:00
if ( ! $id && ! in_the_loop () )
return false ; // in-the-loop function
2007-06-14 04:25:30 +02:00
2007-09-04 01:32:58 +02:00
if ( ! $id )
2007-04-10 23:23:11 +02:00
$id = ( int ) $post -> ID ;
2007-05-31 23:38:33 +02:00
$tags = get_object_term_cache ( $id , 'post_tag' );
2007-05-30 05:36:59 +02:00
if ( false === $tags )
2007-06-19 02:33:44 +02:00
$tags = wp_get_object_terms ( $id , 'post_tag' );
2007-05-30 05:36:59 +02:00
2007-04-10 23:23:11 +02:00
$tags = apply_filters ( 'get_the_tags' , $tags );
2007-09-04 01:32:58 +02:00
if ( empty ( $tags ) )
return false ;
return $tags ;
2007-04-10 23:23:11 +02:00
}
2007-08-14 05:44:49 +02:00
function get_the_tag_list ( $before = '' , $sep = '' , $after = '' ) {
2007-04-10 23:23:11 +02:00
$tags = get_the_tags ();
if ( empty ( $tags ) )
return false ;
2007-06-14 04:25:30 +02:00
2007-04-10 23:23:11 +02:00
$tag_list = $before ;
2007-09-18 18:32:22 +02:00
foreach ( $tags as $tag ) {
$link = get_tag_link ( $tag -> term_id );
if ( is_wp_error ( $link ) )
return $link ;
$tag_links [] = '<a href="' . $link . '" rel="tag">' . $tag -> name . '</a>' ;
}
2007-04-10 23:23:11 +02:00
$tag_links = join ( $sep , $tag_links );
$tag_links = apply_filters ( 'the_tags' , $tag_links );
$tag_list .= $tag_links ;
$tag_list .= $after ;
2007-08-14 05:44:49 +02:00
return $tag_list ;
}
function the_tags ( $before = 'Tags: ' , $sep = ', ' , $after = '' ) {
2007-09-18 18:32:22 +02:00
$return = get_the_tag_list ( $before , $sep , $after );
if ( is_wp_error ( $return ) )
return false ;
else
echo $return ;
2007-04-10 23:23:11 +02:00
}
2005-11-01 19:22:30 +01:00
?>