2004-01-27 10:58:01 +01:00
|
|
|
<?php
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Category Template Tags and API.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Template
|
|
|
|
*/
|
2004-01-27 10:58:01 +01:00
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve category link URL.
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
2010-10-17 07:41:22 +02:00
|
|
|
* @see get_term_link()
|
2008-09-25 16:16:27 +02:00
|
|
|
*
|
2011-02-10 22:48:40 +01:00
|
|
|
* @param int|object $category Category ID or object.
|
2011-02-10 21:17:54 +01:00
|
|
|
* @return string Link on success, empty string if category does not exist.
|
2008-09-25 16:16:27 +02:00
|
|
|
*/
|
2011-02-10 21:17:54 +01:00
|
|
|
function get_category_link( $category ) {
|
2011-02-10 22:48:40 +01:00
|
|
|
if ( ! is_object( $category ) )
|
|
|
|
$category = (int) $category;
|
|
|
|
|
|
|
|
$category = get_term_link( $category, 'category' );
|
|
|
|
|
|
|
|
if ( is_wp_error( $category ) )
|
|
|
|
return '';
|
|
|
|
|
|
|
|
return $category;
|
2006-06-04 23:36:52 +02:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve category parents with separator.
|
|
|
|
*
|
|
|
|
* @since 1.2.0
|
|
|
|
*
|
|
|
|
* @param int $id Category ID.
|
|
|
|
* @param bool $link Optional, default is false. Whether to format with link.
|
|
|
|
* @param string $separator Optional, default is '/'. How to separate categories.
|
|
|
|
* @param bool $nicename Optional, default is false. Whether to use nice name for display.
|
|
|
|
* @param array $visited Optional. Already linked to categories to prevent duplicates.
|
2013-06-21 14:45:11 +02:00
|
|
|
* @return string|WP_Error A list of category parents on success, WP_Error on failure.
|
2008-09-25 16:16:27 +02:00
|
|
|
*/
|
|
|
|
function get_category_parents( $id, $link = false, $separator = '/', $nicename = false, $visited = array() ) {
|
2006-06-04 23:36:52 +02:00
|
|
|
$chain = '';
|
2013-10-02 21:59:10 +02:00
|
|
|
$parent = get_term( $id, 'category' );
|
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
|
2010-11-12 19:40:51 +01:00
|
|
|
$name = $parent->name;
|
2006-06-04 23:36:52 +02:00
|
|
|
|
2008-08-06 23:01:46 +02:00
|
|
|
if ( $parent->parent && ( $parent->parent != $parent->term_id ) && !in_array( $parent->parent, $visited ) ) {
|
2008-07-09 06:57:18 +02:00
|
|
|
$visited[] = $parent->parent;
|
2008-08-06 23:01:46 +02:00
|
|
|
$chain .= get_category_parents( $parent->parent, $link, $separator, $nicename, $visited );
|
2008-07-09 06:57:18 +02:00
|
|
|
}
|
2006-06-04 23:36:52 +02:00
|
|
|
|
|
|
|
if ( $link )
|
2014-05-11 01:57:16 +02:00
|
|
|
$chain .= '<a href="' . esc_url( get_category_link( $parent->term_id ) ) . '">'.$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
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve post categories.
|
|
|
|
*
|
2010-11-12 22:53:15 +01:00
|
|
|
* @since 0.71
|
2008-09-25 16:16:27 +02:00
|
|
|
*
|
|
|
|
* @param int $id Optional, default to current post ID. The post ID.
|
|
|
|
* @return array
|
|
|
|
*/
|
2010-11-12 22:53:15 +01:00
|
|
|
function get_the_category( $id = false ) {
|
2010-11-12 21:05:37 +01:00
|
|
|
$categories = get_the_terms( $id, 'category' );
|
2012-11-07 00:47:14 +01:00
|
|
|
if ( ! $categories || is_wp_error( $categories ) )
|
2010-11-16 01:19:51 +01:00
|
|
|
$categories = array();
|
2010-12-13 22:21:50 +01:00
|
|
|
|
2010-12-12 21:32:29 +01:00
|
|
|
$categories = array_values( $categories );
|
2004-11-15 07:00:21 +01:00
|
|
|
|
2010-11-16 01:19:51 +01:00
|
|
|
foreach ( array_keys( $categories ) as $key ) {
|
2008-08-06 23:01:46 +02:00
|
|
|
_make_cat_compat( $categories[$key] );
|
2007-08-18 19:21:51 +02:00
|
|
|
}
|
2010-12-12 21:32:29 +01:00
|
|
|
|
2014-03-24 02:35:15 +01:00
|
|
|
/**
|
|
|
|
* Filter the array of categories to return for a post.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
|
|
|
* @param array $categories An array of categories to return for the post.
|
|
|
|
*/
|
2010-11-12 21:05:37 +01:00
|
|
|
return apply_filters( 'get_the_categories', $categories );
|
2004-01-27 10:58:01 +01:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Sort categories by name.
|
|
|
|
*
|
|
|
|
* Used by usort() as a callback, should not be used directly. Can actually be
|
|
|
|
* used to sort any term object.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
* @access private
|
|
|
|
*
|
|
|
|
* @param object $a
|
|
|
|
* @param object $b
|
|
|
|
* @return int
|
|
|
|
*/
|
2008-08-06 23:01:46 +02:00
|
|
|
function _usort_terms_by_name( $a, $b ) {
|
|
|
|
return strcmp( $a->name, $b->name );
|
2007-05-29 06:54:45 +02:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Sort categories by ID.
|
|
|
|
*
|
|
|
|
* Used by usort() as a callback, should not be used directly. Can actually be
|
|
|
|
* used to sort any term object.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
* @access private
|
|
|
|
*
|
|
|
|
* @param object $a
|
|
|
|
* @param object $b
|
|
|
|
* @return int
|
|
|
|
*/
|
2008-08-06 23:01:46 +02:00
|
|
|
function _usort_terms_by_ID( $a, $b ) {
|
2007-09-04 01:32:58 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve category name based on category ID.
|
|
|
|
*
|
|
|
|
* @since 0.71
|
|
|
|
*
|
|
|
|
* @param int $cat_ID Category ID.
|
2013-06-21 14:45:11 +02:00
|
|
|
* @return string|WP_Error Category name on success, WP_Error on failure.
|
2008-09-25 16:16:27 +02:00
|
|
|
*/
|
2008-08-06 23:01:46 +02:00
|
|
|
function get_the_category_by_ID( $cat_ID ) {
|
2006-06-04 23:36:52 +02:00
|
|
|
$cat_ID = (int) $cat_ID;
|
2013-10-02 21:59:10 +02:00
|
|
|
$category = get_term( $cat_ID, 'category' );
|
2014-03-13 05:04:15 +01:00
|
|
|
|
2007-09-18 18:32:22 +02:00
|
|
|
if ( is_wp_error( $category ) )
|
|
|
|
return $category;
|
2014-03-13 05:04:15 +01:00
|
|
|
|
|
|
|
return ( $category ) ? $category->name : '';
|
2004-01-27 10:58:01 +01:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve category list in either HTML list or custom format.
|
|
|
|
*
|
|
|
|
* @since 1.5.1
|
|
|
|
*
|
|
|
|
* @param string $separator Optional, default is empty string. Separator for between the categories.
|
|
|
|
* @param string $parents Optional. How to display the parents.
|
|
|
|
* @param int $post_id Optional. Post ID to retrieve categories.
|
|
|
|
* @return string
|
|
|
|
*/
|
2008-08-06 23:01:46 +02:00
|
|
|
function get_the_category_list( $separator = '', $parents='', $post_id = false ) {
|
2007-01-23 09:21:28 +01:00
|
|
|
global $wp_rewrite;
|
2014-03-24 02:35:15 +01:00
|
|
|
if ( ! is_object_in_taxonomy( get_post_type( $post_id ), 'category' ) ) {
|
|
|
|
/** This filter is documented in wp-includes/category-template.php */
|
2010-05-15 11:59:15 +02:00
|
|
|
return apply_filters( 'the_category', '', $separator, $parents );
|
2014-03-24 02:35:15 +01:00
|
|
|
}
|
2010-05-15 11:59:15 +02:00
|
|
|
|
2012-04-27 21:23:57 +02:00
|
|
|
$categories = get_the_category( $post_id );
|
2014-03-24 02:35:15 +01:00
|
|
|
if ( empty( $categories ) ) {
|
|
|
|
/** This filter is documented in wp-includes/category-template.php */
|
2008-08-06 23:01:46 +02:00
|
|
|
return apply_filters( 'the_category', __( 'Uncategorized' ), $separator, $parents );
|
2014-03-24 02:35:15 +01:00
|
|
|
}
|
2005-10-12 19:01:50 +02:00
|
|
|
|
2008-08-06 23:01:46 +02:00
|
|
|
$rel = ( is_object( $wp_rewrite ) && $wp_rewrite->using_permalinks() ) ? 'rel="category tag"' : 'rel="category"';
|
2007-01-23 09:21:28 +01:00
|
|
|
|
2005-10-12 19:01:50 +02:00
|
|
|
$thelist = '';
|
|
|
|
if ( '' == $separator ) {
|
|
|
|
$thelist .= '<ul class="post-categories">';
|
|
|
|
foreach ( $categories as $category ) {
|
|
|
|
$thelist .= "\n\t<li>";
|
2008-08-06 23:01:46 +02:00
|
|
|
switch ( strtolower( $parents ) ) {
|
2005-10-12 19:01:50 +02:00
|
|
|
case 'multiple':
|
2008-08-06 23:01:46 +02:00
|
|
|
if ( $category->parent )
|
2008-10-15 23:02:07 +02:00
|
|
|
$thelist .= get_category_parents( $category->parent, true, $separator );
|
2014-05-11 01:57:16 +02:00
|
|
|
$thelist .= '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '" ' . $rel . '>' . $category->name.'</a></li>';
|
2005-10-12 19:01:50 +02:00
|
|
|
break;
|
|
|
|
case 'single':
|
2014-05-11 01:57:16 +02:00
|
|
|
$thelist .= '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '" ' . $rel . '>';
|
2008-08-06 23:01:46 +02:00
|
|
|
if ( $category->parent )
|
2008-10-15 23:02:07 +02:00
|
|
|
$thelist .= get_category_parents( $category->parent, false, $separator );
|
2007-05-23 20:07:53 +02:00
|
|
|
$thelist .= $category->name.'</a></li>';
|
2005-10-12 19:01:50 +02:00
|
|
|
break;
|
|
|
|
case '':
|
|
|
|
default:
|
2014-05-11 01:57:16 +02:00
|
|
|
$thelist .= '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '" ' . $rel . '>' . $category->name.'</a></li>';
|
2005-10-12 19:01:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$thelist .= '</ul>';
|
|
|
|
} else {
|
|
|
|
$i = 0;
|
|
|
|
foreach ( $categories as $category ) {
|
|
|
|
if ( 0 < $i )
|
2010-04-02 09:30:20 +02:00
|
|
|
$thelist .= $separator;
|
2008-08-06 23:01:46 +02:00
|
|
|
switch ( strtolower( $parents ) ) {
|
2005-10-12 19:01:50 +02:00
|
|
|
case 'multiple':
|
2007-05-23 20:07:53 +02:00
|
|
|
if ( $category->parent )
|
2008-10-15 23:02:07 +02:00
|
|
|
$thelist .= get_category_parents( $category->parent, true, $separator );
|
2014-05-11 01:57:16 +02:00
|
|
|
$thelist .= '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '" ' . $rel . '>' . $category->name.'</a>';
|
2005-10-12 19:01:50 +02:00
|
|
|
break;
|
|
|
|
case 'single':
|
2014-05-11 01:57:16 +02:00
|
|
|
$thelist .= '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '" ' . $rel . '>';
|
2007-05-23 20:07:53 +02:00
|
|
|
if ( $category->parent )
|
2008-10-15 23:02:07 +02:00
|
|
|
$thelist .= get_category_parents( $category->parent, false, $separator );
|
2010-11-12 19:40:51 +01:00
|
|
|
$thelist .= "$category->name</a>";
|
2005-10-12 19:01:50 +02:00
|
|
|
break;
|
|
|
|
case '':
|
|
|
|
default:
|
2014-05-11 01:57:16 +02:00
|
|
|
$thelist .= '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '" ' . $rel . '>' . $category->name.'</a>';
|
2005-10-12 19:01:50 +02:00
|
|
|
}
|
|
|
|
++$i;
|
|
|
|
}
|
|
|
|
}
|
2014-03-24 02:35:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter the category or list of categories.
|
|
|
|
*
|
|
|
|
* @since 1.2.0
|
|
|
|
*
|
|
|
|
* @param array $thelist List of categories for the current post.
|
|
|
|
* @param string $separator Separator used between the categories.
|
|
|
|
* @param string $parents How to display the category parents. Accepts 'multiple',
|
|
|
|
* 'single', or empty.
|
|
|
|
*/
|
2008-08-06 23:01:46 +02:00
|
|
|
return apply_filters( 'the_category', $thelist, $separator, $parents );
|
2005-02-25 16:50:55 +01:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
2008-12-10 00:31:11 +01:00
|
|
|
* Check if the current post in within any of the given categories.
|
|
|
|
*
|
|
|
|
* The given categories are checked against the post's categories' term_ids, names and slugs.
|
|
|
|
* Categories given as integers will only be checked against the post's categories' term_ids.
|
2008-03-02 21:17:30 +01:00
|
|
|
*
|
2008-12-10 00:31:11 +01:00
|
|
|
* Prior to v2.5 of WordPress, category names were not supported.
|
|
|
|
* Prior to v2.7, category slugs were not supported.
|
|
|
|
* Prior to v2.7, only one category could be compared: in_category( $single_category ).
|
|
|
|
* Prior to v2.7, this function could only be used in the WordPress Loop.
|
|
|
|
* As of 2.7, the function can be used anywhere if it is provided a post ID or post object.
|
2008-03-02 21:17:30 +01:00
|
|
|
*
|
|
|
|
* @since 1.2.0
|
|
|
|
*
|
2010-09-07 13:21:11 +02:00
|
|
|
* @param int|string|array $category Category ID, name or slug, or array of said.
|
2012-01-06 19:31:43 +01:00
|
|
|
* @param int|object $post Optional. Post to check instead of the current post. (since 2.7.0)
|
2008-12-10 00:31:11 +01:00
|
|
|
* @return bool True if the current post is in any of the given categories.
|
|
|
|
*/
|
2010-10-01 19:44:53 +02:00
|
|
|
function in_category( $category, $post = null ) {
|
2013-10-26 04:54:10 +02:00
|
|
|
if ( empty( $category ) )
|
|
|
|
return false;
|
|
|
|
|
2013-08-25 00:54:10 +02:00
|
|
|
return has_category( $category, $post );
|
2004-01-27 10:58:01 +01:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Display the category list for the post.
|
|
|
|
*
|
|
|
|
* @since 0.71
|
|
|
|
*
|
|
|
|
* @param string $separator Optional, default is empty string. Separator for between the categories.
|
|
|
|
* @param string $parents Optional. How to display the parents.
|
|
|
|
* @param int $post_id Optional. Post ID to retrieve categories.
|
|
|
|
*/
|
2008-08-06 23:01:46 +02:00
|
|
|
function the_category( $separator = '', $parents='', $post_id = false ) {
|
|
|
|
echo get_the_category_list( $separator, $parents, $post_id );
|
2004-01-27 10:58:01 +01:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve category description.
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
*
|
|
|
|
* @param int $category Optional. Category ID. Will use global category ID by default.
|
|
|
|
* @return string Category description, available.
|
|
|
|
*/
|
2008-08-06 23:01:46 +02:00
|
|
|
function category_description( $category = 0 ) {
|
2009-04-09 18:00:40 +02:00
|
|
|
return term_description( $category, 'category' );
|
2004-01-27 10:58:01 +01:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Display or retrieve the HTML dropdown list of categories.
|
|
|
|
*
|
|
|
|
* The 'hierarchical' argument, which is disabled by default, will override the
|
|
|
|
* depth argument, unless it is true. When the argument is false, it will
|
|
|
|
* display all of the categories. When it is enabled it will use the value in
|
|
|
|
* the 'depth' argument.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
2014-12-30 22:31:23 +01:00
|
|
|
* @since 4.2.0 Introduced the 'value_field' parameter.
|
2008-09-25 16:16:27 +02:00
|
|
|
*
|
2014-12-30 21:49:21 +01:00
|
|
|
* @param string|array $args {
|
|
|
|
* Array of arguments.
|
|
|
|
* @type string $show_option_all Optional. Text to display for showing all categories.
|
|
|
|
* Default is an empty string.
|
|
|
|
* @type string $show_option_none Optional. Text to display for showing no categories.
|
|
|
|
* Default is an empty string.
|
|
|
|
* @type string $option_none_value Optional. Value to use when no category is selected.
|
|
|
|
* Default is an empty string.
|
|
|
|
* @type string $orderby Optional. Which column to use for ordering categories.
|
|
|
|
* See {@see get_terms()} for list of accepted values. Default: 'id' (term_id).
|
|
|
|
* @type string $order Optional. Whether to order terms in ascending or descending order.
|
|
|
|
* Accepts 'ASC' or 'DESC'. Default 'ASC'.
|
|
|
|
* @type bool $pad_counts Optional. See {@see get_terms()} for description. Default: false.
|
|
|
|
* @type bool|int $show_count Optional. Whether to include post counts. Accepts 0, 1, or their bool
|
|
|
|
* equivalents. Default 0.
|
|
|
|
* @type bool|int $hide_empty Optional. Whether to hide categories that don't have any posts.
|
|
|
|
* Accepts 0, 1, or their bool equivalents. Default 1.
|
|
|
|
* @type int $child_of Optional. Term ID to retrieve child terms of. See {@see get_terms()}.
|
|
|
|
* Default 0.
|
|
|
|
* @type array|string $exclude Optional. Array or comma/space-separated string of term ids to exclude.
|
|
|
|
* If $include is non-empty, $exclude is ignored.
|
|
|
|
* Default empty array.
|
|
|
|
* @type bool|int $echo Optional. Whether to echo or return the generated markup. Accepts 0, 1,
|
|
|
|
* or their bool equivalents. Default 1.
|
|
|
|
* @type bool|int $hierarchical Optional. Whether to traverse the taxonomy hierarchy. Accepts 0, 1, or
|
|
|
|
* their bool equivalents. Default: 0.
|
|
|
|
* @type int $depth Optional. Maximum depth. Default 0.
|
|
|
|
* @type int $tab_index Optional. Tab index for the select element. Default 0 (no tabindex).
|
|
|
|
* @type string $name Optional. Value for the 'name' attribute of the select element.
|
|
|
|
* Default: 'cat'.
|
|
|
|
* @type string $id Optional. Value for the 'id' attribute of the select element.
|
|
|
|
* Defaults to the value of $name.
|
|
|
|
* @type string $class Optional. Value for the 'class' attribute of the select element.
|
2014-12-30 22:31:23 +01:00
|
|
|
* @type int|string $selected Optional. Value of the option that should be selected.
|
|
|
|
* @type string $value_field Optional. Term field that should be used to populate the 'value' attribute
|
|
|
|
* of the option elements. Accepts any valid term field: 'term_id', 'name',
|
|
|
|
* 'slug', 'term_group', 'term_taxonomy_id', 'taxonomy', 'description',
|
|
|
|
* 'parent', 'count'. Default 'term_id'.
|
2014-12-30 21:49:21 +01:00
|
|
|
* @type string $taxonomy Optional. Name of the category to retrieve. Default 'category'.
|
|
|
|
* @type bool $hide_if_empty Optional. True to skip generating markup if no categories are found.
|
|
|
|
* Default false (create select element even if no categories are found).
|
|
|
|
*
|
|
|
|
* }
|
2008-09-25 16:16:27 +02:00
|
|
|
* @return string HTML content only if 'echo' argument is 0.
|
|
|
|
*/
|
2008-08-06 23:01:46 +02: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' => '',
|
2009-05-22 14:29:32 +02:00
|
|
|
'orderby' => 'id', 'order' => 'ASC',
|
2012-02-15 17:46:01 +01:00
|
|
|
'show_count' => 0,
|
2007-09-04 01:32:58 +02:00
|
|
|
'hide_empty' => 1, 'child_of' => 0,
|
|
|
|
'exclude' => '', 'echo' => 1,
|
|
|
|
'selected' => 0, 'hierarchical' => 0,
|
2010-03-02 19:36:49 +01:00
|
|
|
'name' => 'cat', 'id' => '',
|
|
|
|
'class' => 'postform', 'depth' => 0,
|
|
|
|
'tab_index' => 0, 'taxonomy' => 'category',
|
2014-12-30 22:31:23 +01:00
|
|
|
'hide_if_empty' => false, 'option_none_value' => -1,
|
|
|
|
'value_field' => 'term_id',
|
2007-05-11 05:10:05 +02:00
|
|
|
);
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2008-08-06 23:01:46 +02:00
|
|
|
$defaults['selected'] = ( is_category() ) ? get_query_var( 'cat' ) : 0;
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2010-03-18 21:17:15 +01:00
|
|
|
// Back compat.
|
|
|
|
if ( isset( $args['type'] ) && 'link' == $args['type'] ) {
|
|
|
|
_deprecated_argument( __FUNCTION__, '3.0', '' );
|
|
|
|
$args['taxonomy'] = 'link_category';
|
|
|
|
}
|
|
|
|
|
2007-05-11 05:10:05 +02:00
|
|
|
$r = wp_parse_args( $args, $defaults );
|
2014-05-23 22:47:15 +02:00
|
|
|
$option_none_value = $r['option_none_value'];
|
2009-09-29 00:32:27 +02:00
|
|
|
|
2014-05-15 17:48:14 +02:00
|
|
|
if ( ! isset( $r['pad_counts'] ) && $r['show_count'] && $r['hierarchical'] ) {
|
2009-09-29 00:32:27 +02:00
|
|
|
$r['pad_counts'] = true;
|
|
|
|
}
|
|
|
|
|
2014-05-15 17:48:14 +02:00
|
|
|
$tab_index = $r['tab_index'];
|
2006-03-02 05:51:24 +01:00
|
|
|
|
2008-03-22 10:14:49 +01:00
|
|
|
$tab_index_attribute = '';
|
2014-05-15 17:48:14 +02:00
|
|
|
if ( (int) $tab_index > 0 ) {
|
2008-03-22 10:14:49 +01:00
|
|
|
$tab_index_attribute = " tabindex=\"$tab_index\"";
|
2014-05-15 17:48:14 +02:00
|
|
|
}
|
2015-01-02 22:34:23 +01:00
|
|
|
|
|
|
|
// Avoid clashes with the 'name' param of get_terms().
|
|
|
|
$get_terms_args = $r;
|
|
|
|
unset( $get_terms_args['name'] );
|
|
|
|
$categories = get_terms( $r['taxonomy'], $get_terms_args );
|
|
|
|
|
2014-05-15 17:48:14 +02:00
|
|
|
$name = esc_attr( $r['name'] );
|
|
|
|
$class = esc_attr( $r['class'] );
|
|
|
|
$id = $r['id'] ? esc_attr( $r['id'] ) : $name;
|
2008-03-22 10:14:49 +01:00
|
|
|
|
2014-05-15 17:48:14 +02:00
|
|
|
if ( ! $r['hide_if_empty'] || ! empty( $categories ) ) {
|
2010-03-02 19:36:49 +01:00
|
|
|
$output = "<select name='$name' id='$id' class='$class' $tab_index_attribute>\n";
|
2014-05-15 17:48:14 +02:00
|
|
|
} else {
|
2010-01-11 20:27:44 +01:00
|
|
|
$output = '';
|
2014-05-15 17:48:14 +02:00
|
|
|
}
|
|
|
|
if ( empty( $categories ) && ! $r['hide_if_empty'] && ! empty( $r['show_option_none'] ) ) {
|
2014-03-24 02:35:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter a taxonomy drop-down display element.
|
|
|
|
*
|
|
|
|
* A variety of taxonomy drop-down display elements can be modified
|
|
|
|
* just prior to display via this filter. Filterable arguments include
|
|
|
|
* 'show_option_none', 'show_option_all', and various forms of the
|
|
|
|
* term name.
|
|
|
|
*
|
|
|
|
* @since 1.2.0
|
|
|
|
*
|
|
|
|
* @see wp_dropdown_categories()
|
|
|
|
*
|
|
|
|
* @param string $element Taxonomy element to list.
|
|
|
|
*/
|
2014-05-15 17:48:14 +02:00
|
|
|
$show_option_none = apply_filters( 'list_cats', $r['show_option_none'] );
|
2014-05-23 22:47:15 +02:00
|
|
|
$output .= "\t<option value='" . esc_attr( $option_none_value ) . "' selected='selected'>$show_option_none</option>\n";
|
2010-02-13 06:40:47 +01:00
|
|
|
}
|
2010-02-21 01:03:42 +01:00
|
|
|
|
2010-01-11 20:27:44 +01:00
|
|
|
if ( ! empty( $categories ) ) {
|
2006-03-02 05:51:24 +01:00
|
|
|
|
2014-05-15 17:48:14 +02:00
|
|
|
if ( $r['show_option_all'] ) {
|
2014-03-24 02:35:15 +01:00
|
|
|
|
|
|
|
/** This filter is documented in wp-includes/category-template.php */
|
2014-05-15 17:48:14 +02:00
|
|
|
$show_option_all = apply_filters( 'list_cats', $r['show_option_all'] );
|
2008-12-23 13:51:12 +01:00
|
|
|
$selected = ( '0' === strval($r['selected']) ) ? " selected='selected'" : '';
|
|
|
|
$output .= "\t<option value='0'$selected>$show_option_all</option>\n";
|
2006-03-02 05:51:24 +01:00
|
|
|
}
|
|
|
|
|
2014-05-15 17:48:14 +02:00
|
|
|
if ( $r['show_option_none'] ) {
|
2014-03-24 02:35:15 +01:00
|
|
|
|
|
|
|
/** This filter is documented in wp-includes/category-template.php */
|
2014-05-15 17:48:14 +02:00
|
|
|
$show_option_none = apply_filters( 'list_cats', $r['show_option_none'] );
|
2014-05-23 22:47:15 +02:00
|
|
|
$selected = selected( $option_none_value, $r['selected'], false );
|
|
|
|
$output .= "\t<option value='" . esc_attr( $option_none_value ) . "'$selected>$show_option_none</option>\n";
|
2005-10-12 19:01:50 +02:00
|
|
|
}
|
2006-03-02 05:51:24 +01:00
|
|
|
|
2014-05-15 17:48:14 +02:00
|
|
|
if ( $r['hierarchical'] ) {
|
2008-01-31 01:58:54 +01:00
|
|
|
$depth = $r['depth']; // Walk the full depth.
|
2014-05-15 17:48:14 +02:00
|
|
|
} else {
|
2006-03-02 05:51:24 +01:00
|
|
|
$depth = -1; // Flat.
|
2014-05-15 17:48:14 +02:00
|
|
|
}
|
2008-08-06 23:01:46 +02:00
|
|
|
$output .= walk_category_dropdown_tree( $categories, $depth, $r );
|
2005-10-12 19:01:50 +02:00
|
|
|
}
|
2012-01-05 21:10:39 +01:00
|
|
|
|
2014-05-15 17:48:14 +02:00
|
|
|
if ( ! $r['hide_if_empty'] || ! empty( $categories ) ) {
|
2010-01-11 20:27:44 +01:00
|
|
|
$output .= "</select>\n";
|
2014-05-15 17:48:14 +02:00
|
|
|
}
|
2014-02-02 06:33:13 +01:00
|
|
|
/**
|
2014-03-24 02:35:15 +01:00
|
|
|
* Filter the taxonomy drop-down output.
|
2014-02-02 06:33:13 +01:00
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
2014-03-24 02:35:15 +01:00
|
|
|
* @param string $output HTML output.
|
|
|
|
* @param array $r Arguments used to build the drop-down.
|
2014-02-02 06:33:13 +01:00
|
|
|
*/
|
|
|
|
$output = apply_filters( 'wp_dropdown_cats', $output, $r );
|
2006-03-02 05:51:24 +01:00
|
|
|
|
2014-05-15 17:48:14 +02:00
|
|
|
if ( $r['echo'] ) {
|
2006-03-02 05:51:24 +01:00
|
|
|
echo $output;
|
2014-05-15 17:48:14 +02:00
|
|
|
}
|
2006-03-02 05:51:24 +01:00
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Display or retrieve the HTML list of categories.
|
|
|
|
*
|
|
|
|
* The list of arguments is below:
|
|
|
|
* 'show_option_all' (string) - Text to display for showing all categories.
|
|
|
|
* 'orderby' (string) default is 'ID' - What column to use for ordering the
|
|
|
|
* categories.
|
|
|
|
* 'order' (string) default is 'ASC' - What direction to order categories.
|
|
|
|
* 'show_count' (bool|int) default is 0 - Whether to show how many posts are
|
|
|
|
* in the category.
|
|
|
|
* 'hide_empty' (bool|int) default is 1 - Whether to hide categories that
|
|
|
|
* don't have any posts attached to them.
|
|
|
|
* 'use_desc_for_title' (bool|int) default is 1 - Whether to use the
|
2014-05-24 15:42:15 +02:00
|
|
|
* category description as the title attribute.
|
2008-09-25 16:16:27 +02:00
|
|
|
* 'feed' - See {@link get_categories()}.
|
|
|
|
* 'feed_type' - See {@link get_categories()}.
|
|
|
|
* 'feed_image' - See {@link get_categories()}.
|
|
|
|
* 'child_of' (int) default is 0 - See {@link get_categories()}.
|
|
|
|
* 'exclude' (string) - See {@link get_categories()}.
|
2008-12-30 23:30:36 +01:00
|
|
|
* 'exclude_tree' (string) - See {@link get_categories()}.
|
2008-09-25 16:16:27 +02:00
|
|
|
* 'echo' (bool|int) default is 1 - Whether to display or retrieve content.
|
|
|
|
* 'current_category' (int) - See {@link get_categories()}.
|
|
|
|
* 'hierarchical' (bool) - See {@link get_categories()}.
|
|
|
|
* 'title_li' (string) - See {@link get_categories()}.
|
|
|
|
* 'depth' (int) - The max depth.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string|array $args Optional. Override default arguments.
|
2014-12-01 02:34:24 +01:00
|
|
|
* @return false|null|string HTML content only if 'echo' argument is 0.
|
2008-09-25 16:16:27 +02:00
|
|
|
*/
|
2008-08-06 23:01:46 +02:00
|
|
|
function wp_list_categories( $args = '' ) {
|
2007-05-11 05:10:05 +02:00
|
|
|
$defaults = array(
|
2010-03-28 04:07:31 +02:00
|
|
|
'show_option_all' => '', 'show_option_none' => __('No categories'),
|
|
|
|
'orderby' => 'name', 'order' => 'ASC',
|
2012-02-15 17:46:01 +01:00
|
|
|
'style' => 'list',
|
2010-03-28 04:07:31 +02:00
|
|
|
'show_count' => 0, 'hide_empty' => 1,
|
|
|
|
'use_desc_for_title' => 1, 'child_of' => 0,
|
|
|
|
'feed' => '', 'feed_type' => '',
|
|
|
|
'feed_image' => '', 'exclude' => '',
|
|
|
|
'exclude_tree' => '', 'current_category' => 0,
|
2008-08-06 23:01:46 +02:00
|
|
|
'hierarchical' => true, 'title_li' => __( 'Categories' ),
|
2010-03-28 04:07:31 +02:00
|
|
|
'echo' => 1, 'depth' => 0,
|
|
|
|
'taxonomy' => 'category'
|
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
|
|
|
|
2010-03-28 04:07:31 +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-06-14 04:25:30 +02:00
|
|
|
|
2008-12-30 23:30:36 +01:00
|
|
|
if ( true == $r['hierarchical'] ) {
|
|
|
|
$r['exclude_tree'] = $r['exclude'];
|
|
|
|
$r['exclude'] = '';
|
|
|
|
}
|
2010-05-03 22:26:11 +02:00
|
|
|
|
2014-05-15 19:28:14 +02:00
|
|
|
if ( ! isset( $r['class'] ) )
|
2010-03-28 04:07:31 +02:00
|
|
|
$r['class'] = ( 'category' == $r['taxonomy'] ) ? 'categories' : $r['taxonomy'];
|
2008-12-30 23:30:36 +01:00
|
|
|
|
2014-05-15 19:28:14 +02:00
|
|
|
if ( ! taxonomy_exists( $r['taxonomy'] ) ) {
|
2010-03-28 04:07:31 +02:00
|
|
|
return false;
|
2014-05-15 19:28:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$show_option_all = $r['show_option_all'];
|
|
|
|
$show_option_none = $r['show_option_none'];
|
2010-03-28 04:07:31 +02:00
|
|
|
|
2008-08-06 23:01:46 +02:00
|
|
|
$categories = get_categories( $r );
|
2006-11-19 08:56:05 +01:00
|
|
|
|
2006-03-01 14:30:19 +01:00
|
|
|
$output = '';
|
2014-05-15 19:28:14 +02:00
|
|
|
if ( $r['title_li'] && 'list' == $r['style'] ) {
|
|
|
|
$output = '<li class="' . esc_attr( $r['class'] ) . '">' . $r['title_li'] . '<ul>';
|
|
|
|
}
|
2008-08-06 23:01:46 +02:00
|
|
|
if ( empty( $categories ) ) {
|
2010-03-28 04:07:31 +02:00
|
|
|
if ( ! empty( $show_option_none ) ) {
|
2014-05-15 19:28:14 +02:00
|
|
|
if ( 'list' == $r['style'] ) {
|
2013-12-03 21:51:19 +01:00
|
|
|
$output .= '<li class="cat-item-none">' . $show_option_none . '</li>';
|
2014-05-15 19:28:14 +02:00
|
|
|
} else {
|
2010-03-28 04:07:31 +02:00
|
|
|
$output .= $show_option_none;
|
2014-05-15 19:28:14 +02:00
|
|
|
}
|
2010-03-28 04:07:31 +02:00
|
|
|
}
|
2006-03-01 14:30:19 +01:00
|
|
|
} else {
|
2011-11-14 18:24:14 +01:00
|
|
|
if ( ! empty( $show_option_all ) ) {
|
|
|
|
$posts_page = ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_for_posts' ) ) ? get_permalink( get_option( 'page_for_posts' ) ) : home_url( '/' );
|
|
|
|
$posts_page = esc_url( $posts_page );
|
2014-05-15 19:28:14 +02:00
|
|
|
if ( 'list' == $r['style'] ) {
|
2013-12-03 21:51:19 +01:00
|
|
|
$output .= "<li class='cat-item-all'><a href='$posts_page'>$show_option_all</a></li>";
|
2014-05-15 19:28:14 +02:00
|
|
|
} else {
|
2011-11-14 18:24:14 +01:00
|
|
|
$output .= "<a href='$posts_page'>$show_option_all</a>";
|
2014-05-15 19:28:14 +02:00
|
|
|
}
|
2011-11-14 18:24:14 +01:00
|
|
|
}
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2010-11-09 02:20:38 +01:00
|
|
|
if ( empty( $r['current_category'] ) && ( is_category() || is_tax() || is_tag() ) ) {
|
|
|
|
$current_term_object = get_queried_object();
|
2014-05-15 19:28:14 +02:00
|
|
|
if ( $current_term_object && $r['taxonomy'] === $current_term_object->taxonomy ) {
|
2010-11-09 02:20:38 +01:00
|
|
|
$r['current_category'] = get_queried_object_id();
|
2014-05-15 19:28:14 +02:00
|
|
|
}
|
2010-11-09 02:20:38 +01:00
|
|
|
}
|
2006-12-01 19:55:27 +01:00
|
|
|
|
2014-05-15 19:28:14 +02:00
|
|
|
if ( $r['hierarchical'] ) {
|
2008-01-10 22:51:00 +01:00
|
|
|
$depth = $r['depth'];
|
2014-05-15 19:28:14 +02:00
|
|
|
} else {
|
2006-03-01 14:30:19 +01:00
|
|
|
$depth = -1; // Flat.
|
2014-05-15 19:28:14 +02:00
|
|
|
}
|
2008-08-06 23:01:46 +02:00
|
|
|
$output .= walk_category_tree( $categories, $depth, $r );
|
2004-04-30 20:28:50 +02:00
|
|
|
}
|
|
|
|
|
2014-05-15 19:28:14 +02:00
|
|
|
if ( $r['title_li'] && 'list' == $r['style'] )
|
2006-03-01 14:30:19 +01:00
|
|
|
$output .= '</ul></li>';
|
2006-11-19 08:56:05 +01:00
|
|
|
|
2014-03-24 02:35:15 +01:00
|
|
|
/**
|
|
|
|
* Filter the HTML output of a taxonomy list.
|
|
|
|
*
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string $output HTML output.
|
|
|
|
* @param array $args An array of taxonomy-listing arguments.
|
|
|
|
*/
|
2014-05-15 19:28:14 +02:00
|
|
|
$html = apply_filters( 'wp_list_categories', $output, $args );
|
2007-09-12 04:53:27 +02:00
|
|
|
|
2014-05-15 19:28:14 +02:00
|
|
|
if ( $r['echo'] ) {
|
|
|
|
echo $html;
|
|
|
|
} else {
|
|
|
|
return $html;
|
|
|
|
}
|
2006-03-01 14:30:19 +01:00
|
|
|
}
|
2005-08-31 01:25:34 +02:00
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Display tag cloud.
|
|
|
|
*
|
|
|
|
* The text size is set by the 'smallest' and 'largest' arguments, which will
|
|
|
|
* use the 'unit' argument value for the CSS text size unit. The 'format'
|
|
|
|
* argument can be 'flat' (default), 'list', or 'array'. The flat value for the
|
|
|
|
* 'format' argument will separate tags with spaces. The list value for the
|
|
|
|
* 'format' argument will format the tags in a UL HTML list. The array value for
|
|
|
|
* the 'format' argument will return in PHP array type format.
|
|
|
|
*
|
|
|
|
* The 'orderby' argument will accept 'name' or 'count' and defaults to 'name'.
|
|
|
|
* The 'order' is the direction to sort, defaults to 'ASC' and can be 'DESC'.
|
|
|
|
*
|
|
|
|
* The 'number' argument is how many tags to return. By default, the limit will
|
|
|
|
* be to return the top 45 tags in the tag cloud list.
|
|
|
|
*
|
2014-03-03 18:29:15 +01:00
|
|
|
* The 'topic_count_text' argument is a nooped plural from _n_noop() to generate the
|
|
|
|
* text for the tooltip of the tag link.
|
|
|
|
*
|
|
|
|
* The 'topic_count_text_callback' argument is a function, which given the count
|
|
|
|
* of the posts with that tag returns a text for the tooltip of the tag link.
|
2008-09-25 16:16:27 +02:00
|
|
|
*
|
2014-03-25 19:40:15 +01:00
|
|
|
* The 'post_type' argument is used only when 'link' is set to 'edit'. It determines the post_type
|
|
|
|
* passed to edit.php for the popular tags edit links.
|
|
|
|
*
|
2008-09-25 16:16:27 +02:00
|
|
|
* The 'exclude' and 'include' arguments are used for the {@link get_tags()}
|
|
|
|
* function. Only one should be used, because only one will be used and the
|
|
|
|
* other ignored, if they are both set.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*
|
2014-12-01 02:34:24 +01:00
|
|
|
* @param array|string|null $args Optional. Override default arguments.
|
|
|
|
* @return null|false Generated tag cloud, only if no failures and 'array' is set for the 'format' argument.
|
2008-09-25 16:16:27 +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,
|
2009-10-08 23:51:34 +02:00
|
|
|
'format' => 'flat', 'separator' => "\n", 'orderby' => 'name', 'order' => 'ASC',
|
2014-03-25 19:40:15 +01:00
|
|
|
'exclude' => '', 'include' => '', 'link' => 'view', 'taxonomy' => 'post_tag', 'post_type' => '', 'echo' => true
|
2007-04-10 21:52:15 +02:00
|
|
|
);
|
|
|
|
$args = wp_parse_args( $args, $defaults );
|
|
|
|
|
2009-02-12 00:41:29 +01:00
|
|
|
$tags = get_terms( $args['taxonomy'], array_merge( $args, array( 'orderby' => 'count', 'order' => 'DESC' ) ) ); // Always query top tags
|
2007-04-10 21:52:15 +02:00
|
|
|
|
2011-06-22 21:37:05 +02:00
|
|
|
if ( empty( $tags ) || is_wp_error( $tags ) )
|
2007-04-10 21:52:15 +02:00
|
|
|
return;
|
|
|
|
|
2008-08-19 18:36:18 +02:00
|
|
|
foreach ( $tags as $key => $tag ) {
|
2008-10-25 20:19:42 +02:00
|
|
|
if ( 'edit' == $args['link'] )
|
2014-03-25 19:40:15 +01:00
|
|
|
$link = get_edit_term_link( $tag->term_id, $tag->taxonomy, $args['post_type'] );
|
2008-10-25 20:19:42 +02:00
|
|
|
else
|
2010-11-04 11:45:14 +01:00
|
|
|
$link = get_term_link( intval($tag->term_id), $tag->taxonomy );
|
2008-08-19 18:36:18 +02:00
|
|
|
if ( is_wp_error( $link ) )
|
|
|
|
return false;
|
2008-01-14 23:35:43 +01:00
|
|
|
|
2008-08-19 18:36:18 +02:00
|
|
|
$tags[ $key ]->link = $link;
|
|
|
|
$tags[ $key ]->id = $tag->term_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
$return = wp_generate_tag_cloud( $tags, $args ); // Here's where those top tags get sorted according to $args
|
2008-08-19 01:40:41 +02:00
|
|
|
|
2014-03-24 02:35:15 +01:00
|
|
|
/**
|
|
|
|
* Filter the tag cloud output.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*
|
|
|
|
* @param string $return HTML output of the tag cloud.
|
|
|
|
* @param array $args An array of tag cloud arguments.
|
|
|
|
*/
|
2008-01-14 23:35:43 +01:00
|
|
|
$return = apply_filters( 'wp_tag_cloud', $return, $args );
|
|
|
|
|
2009-04-16 19:32:06 +02:00
|
|
|
if ( 'array' == $args['format'] || empty($args['echo']) )
|
2008-01-14 23:35:43 +01:00
|
|
|
return $return;
|
|
|
|
|
|
|
|
echo $return;
|
2007-04-10 21:52:15 +02:00
|
|
|
}
|
|
|
|
|
2009-09-01 22:06:11 +02:00
|
|
|
/**
|
|
|
|
* Default topic count scaling for tag links
|
|
|
|
*
|
|
|
|
* @param integer $count number of posts with that tag
|
|
|
|
* @return integer scaled count
|
|
|
|
*/
|
|
|
|
function default_topic_count_scale( $count ) {
|
|
|
|
return round(log10($count + 1) * 100);
|
|
|
|
}
|
|
|
|
|
2008-08-04 23:01:09 +02:00
|
|
|
/**
|
2008-09-25 16:16:27 +02:00
|
|
|
* Generates a tag cloud (heatmap) from provided data.
|
2008-08-04 23:01:09 +02:00
|
|
|
*
|
2008-09-25 16:16:27 +02:00
|
|
|
* The text size is set by the 'smallest' and 'largest' arguments, which will
|
|
|
|
* use the 'unit' argument value for the CSS text size unit. The 'format'
|
|
|
|
* argument can be 'flat' (default), 'list', or 'array'. The flat value for the
|
|
|
|
* 'format' argument will separate tags with spaces. The list value for the
|
|
|
|
* 'format' argument will format the tags in a UL HTML list. The array value for
|
|
|
|
* the 'format' argument will return in PHP array type format.
|
2008-08-06 23:01:46 +02:00
|
|
|
*
|
2009-07-26 03:23:46 +02:00
|
|
|
* The 'tag_cloud_sort' filter allows you to override the sorting.
|
|
|
|
* Passed to the filter: $tags array and $args array, has to return the $tags array
|
|
|
|
* after sorting it.
|
2009-05-25 01:47:49 +02:00
|
|
|
*
|
2008-09-25 16:16:27 +02:00
|
|
|
* The 'orderby' argument will accept 'name' or 'count' and defaults to 'name'.
|
|
|
|
* The 'order' is the direction to sort, defaults to 'ASC' and can be 'DESC' or
|
|
|
|
* 'RAND'.
|
2008-08-04 23:01:09 +02:00
|
|
|
*
|
2008-09-25 16:16:27 +02:00
|
|
|
* The 'number' argument is how many tags to return. By default, the limit will
|
|
|
|
* be to return the entire tag cloud list.
|
|
|
|
*
|
2014-03-03 18:29:15 +01:00
|
|
|
* The 'topic_count_text' argument is a nooped plural from _n_noop() to generate the
|
|
|
|
* text for the tooltip of the tag link.
|
|
|
|
*
|
2008-11-21 19:12:57 +01:00
|
|
|
* The 'topic_count_text_callback' argument is a function, which given the count
|
2014-03-03 18:29:15 +01:00
|
|
|
* of the posts with that tag returns a text for the tooltip of the tag link.
|
2008-09-25 16:16:27 +02:00
|
|
|
*
|
|
|
|
* @todo Complete functionality.
|
|
|
|
* @since 2.3.0
|
|
|
|
*
|
|
|
|
* @param array $tags List of tags.
|
|
|
|
* @param string|array $args Optional, override default arguments.
|
2014-03-25 13:56:14 +01:00
|
|
|
* @return string|array Tag cloud as a string or an array, depending on 'format' argument.
|
2008-09-25 16:16:27 +02:00
|
|
|
*/
|
2007-04-10 21:52:15 +02:00
|
|
|
function wp_generate_tag_cloud( $tags, $args = '' ) {
|
|
|
|
$defaults = array(
|
2008-08-19 18:36:18 +02:00
|
|
|
'smallest' => 8, 'largest' => 22, 'unit' => 'pt', 'number' => 0,
|
2009-10-08 23:51:34 +02:00
|
|
|
'format' => 'flat', 'separator' => "\n", 'orderby' => 'name', 'order' => 'ASC',
|
2014-03-03 18:29:15 +01:00
|
|
|
'topic_count_text' => null, 'topic_count_text_callback' => null,
|
2009-10-08 23:51:34 +02:00
|
|
|
'topic_count_scale_callback' => 'default_topic_count_scale', 'filter' => 1,
|
2007-04-10 21:52:15 +02:00
|
|
|
);
|
2008-12-09 19:03:31 +01:00
|
|
|
|
2007-04-10 21:52:15 +02:00
|
|
|
$args = wp_parse_args( $args, $defaults );
|
|
|
|
|
2014-05-15 19:48:15 +02:00
|
|
|
$return = ( 'array' === $args['format'] ) ? array() : '';
|
2014-03-25 13:56:14 +01:00
|
|
|
|
|
|
|
if ( empty( $tags ) ) {
|
|
|
|
return $return;
|
|
|
|
}
|
2007-04-10 21:52:15 +02:00
|
|
|
|
2014-03-03 18:29:15 +01:00
|
|
|
// Juggle topic count tooltips:
|
|
|
|
if ( isset( $args['topic_count_text'] ) ) {
|
|
|
|
// First look for nooped plural support via topic_count_text.
|
|
|
|
$translate_nooped_plural = $args['topic_count_text'];
|
|
|
|
} elseif ( ! empty( $args['topic_count_text_callback'] ) ) {
|
|
|
|
// Look for the alternative callback style. Ignore the previous default.
|
|
|
|
if ( $args['topic_count_text_callback'] === 'default_topic_count_text' ) {
|
|
|
|
$translate_nooped_plural = _n_noop( '%s topic', '%s topics' );
|
|
|
|
} else {
|
|
|
|
$translate_nooped_plural = false;
|
|
|
|
}
|
|
|
|
} elseif ( isset( $args['single_text'] ) && isset( $args['multiple_text'] ) ) {
|
|
|
|
// If no callback exists, look for the old-style single_text and multiple_text arguments.
|
|
|
|
$translate_nooped_plural = _n_noop( $args['single_text'], $args['multiple_text'] );
|
|
|
|
} else {
|
|
|
|
// This is the default for when no callback, plural, or argument is passed in.
|
|
|
|
$translate_nooped_plural = _n_noop( '%s topic', '%s topics' );
|
|
|
|
}
|
|
|
|
|
2014-03-24 02:35:15 +01:00
|
|
|
/**
|
|
|
|
* Filter how the items in a tag cloud are sorted.
|
|
|
|
*
|
|
|
|
* @since 2.8.0
|
|
|
|
*
|
|
|
|
* @param array $tags Ordered array of terms.
|
|
|
|
* @param array $args An array of tag cloud arguments.
|
|
|
|
*/
|
2009-07-26 03:23:46 +02:00
|
|
|
$tags_sorted = apply_filters( 'tag_cloud_sort', $tags, $args );
|
2014-03-25 14:00:15 +01:00
|
|
|
if ( empty( $tags_sorted ) ) {
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $tags_sorted !== $tags ) {
|
2009-07-26 03:23:46 +02:00
|
|
|
$tags = $tags_sorted;
|
2014-03-25 14:00:15 +01:00
|
|
|
unset( $tags_sorted );
|
2009-07-26 03:23:46 +02:00
|
|
|
} else {
|
2014-05-15 19:48:15 +02:00
|
|
|
if ( 'RAND' === $args['order'] ) {
|
2014-03-25 14:00:15 +01:00
|
|
|
shuffle( $tags );
|
2009-07-26 03:23:46 +02:00
|
|
|
} else {
|
|
|
|
// SQL cannot save you; this is a second (potentially different) sort on a subset of data.
|
2014-05-15 19:48:15 +02:00
|
|
|
if ( 'name' === $args['orderby'] ) {
|
2011-09-29 19:20:34 +02:00
|
|
|
uasort( $tags, '_wp_object_name_sort_cb' );
|
2014-03-25 14:00:15 +01:00
|
|
|
} else {
|
2011-09-29 19:20:34 +02:00
|
|
|
uasort( $tags, '_wp_object_count_sort_cb' );
|
2014-03-25 14:00:15 +01:00
|
|
|
}
|
2009-02-23 10:12:59 +01:00
|
|
|
|
2014-05-15 19:48:15 +02:00
|
|
|
if ( 'DESC' === $args['order'] ) {
|
2009-07-26 03:23:46 +02:00
|
|
|
$tags = array_reverse( $tags, true );
|
2014-03-25 14:00:15 +01:00
|
|
|
}
|
2009-07-26 03:23:46 +02:00
|
|
|
}
|
2008-02-13 20:12:46 +01:00
|
|
|
}
|
2007-04-10 21:52:15 +02:00
|
|
|
|
2014-05-15 19:48:15 +02:00
|
|
|
if ( $args['number'] > 0 )
|
|
|
|
$tags = array_slice( $tags, 0, $args['number'] );
|
2008-08-19 18:36:18 +02:00
|
|
|
|
|
|
|
$counts = array();
|
2009-09-01 22:06:11 +02:00
|
|
|
$real_counts = array(); // For the alt tag
|
|
|
|
foreach ( (array) $tags as $key => $tag ) {
|
|
|
|
$real_counts[ $key ] = $tag->count;
|
2014-05-15 19:48:15 +02:00
|
|
|
$counts[ $key ] = call_user_func( $args['topic_count_scale_callback'], $tag->count );
|
2009-09-01 22:06:11 +02:00
|
|
|
}
|
2008-08-19 18:36:18 +02:00
|
|
|
|
|
|
|
$min_count = min( $counts );
|
|
|
|
$spread = max( $counts ) - $min_count;
|
|
|
|
if ( $spread <= 0 )
|
|
|
|
$spread = 1;
|
2014-05-15 19:48:15 +02:00
|
|
|
$font_spread = $args['largest'] - $args['smallest'];
|
2008-11-28 22:06:57 +01:00
|
|
|
if ( $font_spread < 0 )
|
2008-08-19 18:36:18 +02:00
|
|
|
$font_spread = 1;
|
|
|
|
$font_step = $font_spread / $spread;
|
|
|
|
|
2007-04-10 21:52:15 +02:00
|
|
|
$a = array();
|
|
|
|
|
2008-08-19 18:36:18 +02:00
|
|
|
foreach ( $tags as $key => $tag ) {
|
|
|
|
$count = $counts[ $key ];
|
2009-09-01 22:06:11 +02:00
|
|
|
$real_count = $real_counts[ $key ];
|
2009-05-18 18:00:33 +02:00
|
|
|
$tag_link = '#' != $tag->link ? esc_url( $tag->link ) : '#';
|
2008-08-19 18:36:18 +02:00
|
|
|
$tag_id = isset($tags[ $key ]->id) ? $tags[ $key ]->id : $key;
|
|
|
|
$tag_name = $tags[ $key ]->name;
|
2014-03-03 18:29:15 +01:00
|
|
|
|
|
|
|
if ( $translate_nooped_plural ) {
|
|
|
|
$title_attribute = sprintf( translate_nooped_plural( $translate_nooped_plural, $real_count ), number_format_i18n( $real_count ) );
|
|
|
|
} else {
|
2014-05-15 19:48:15 +02:00
|
|
|
$title_attribute = call_user_func( $args['topic_count_text_callback'], $real_count, $tag, $args );
|
2014-03-03 18:29:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$a[] = "<a href='$tag_link' class='tag-link-$tag_id' title='" . esc_attr( $title_attribute ) . "' style='font-size: " .
|
2014-05-15 19:48:15 +02:00
|
|
|
str_replace( ',', '.', ( $args['smallest'] + ( ( $count - $min_count ) * $font_step ) ) )
|
|
|
|
. $args['unit'] . ";'>$tag_name</a>";
|
2007-04-10 21:52:15 +02:00
|
|
|
}
|
|
|
|
|
2014-05-30 19:58:15 +02:00
|
|
|
switch ( $args['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( $args['separator'], $a );
|
|
|
|
break;
|
|
|
|
}
|
2007-04-10 21:52:15 +02:00
|
|
|
|
2014-05-15 19:48:15 +02:00
|
|
|
if ( $args['filter'] ) {
|
2014-03-24 02:35:15 +01:00
|
|
|
/**
|
|
|
|
* Filter the generated output of a tag cloud.
|
|
|
|
*
|
|
|
|
* The filter is only evaluated if a true value is passed
|
|
|
|
* to the $filter argument in wp_generate_tag_cloud().
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*
|
|
|
|
* @see wp_generate_tag_cloud()
|
|
|
|
*
|
2014-03-25 13:56:14 +01:00
|
|
|
* @param array|string $return String containing the generated HTML tag cloud output
|
|
|
|
* or an array of tag links if the 'format' argument
|
|
|
|
* equals 'array'.
|
|
|
|
* @param array $tags An array of terms used in the tag cloud.
|
|
|
|
* @param array $args An array of wp_generate_tag_cloud() arguments.
|
2014-03-24 02:35:15 +01:00
|
|
|
*/
|
2009-05-02 20:43:04 +02:00
|
|
|
return apply_filters( 'wp_generate_tag_cloud', $return, $tags, $args );
|
2014-03-24 02:35:15 +01:00
|
|
|
}
|
|
|
|
|
2010-06-30 02:05:18 +02:00
|
|
|
else
|
2009-05-02 20:43:04 +02:00
|
|
|
return $return;
|
2007-04-10 21:52:15 +02:00
|
|
|
}
|
|
|
|
|
2010-11-11 23:50:36 +01:00
|
|
|
/**
|
2011-09-29 19:20:34 +02:00
|
|
|
* Callback for comparing objects based on name
|
2010-11-11 23:50:36 +01:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
* @access private
|
|
|
|
*/
|
2011-09-29 19:20:34 +02:00
|
|
|
function _wp_object_name_sort_cb( $a, $b ) {
|
2010-11-11 23:50:36 +01:00
|
|
|
return strnatcasecmp( $a->name, $b->name );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-09-29 19:20:34 +02:00
|
|
|
* Callback for comparing objects based on count
|
2010-11-11 23:50:36 +01:00
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
* @access private
|
|
|
|
*/
|
2011-09-29 19:20:34 +02:00
|
|
|
function _wp_object_count_sort_cb( $a, $b ) {
|
2010-11-11 23:50:36 +01:00
|
|
|
return ( $a->count > $b->count );
|
|
|
|
}
|
|
|
|
|
2006-06-04 23:36:52 +02:00
|
|
|
//
|
|
|
|
// Helper functions
|
|
|
|
//
|
2006-03-01 14:30:19 +01:00
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve HTML list content for category list.
|
|
|
|
*
|
|
|
|
* @uses Walker_Category to create HTML list content.
|
|
|
|
* @since 2.1.0
|
|
|
|
* @see Walker_Category::walk() for parameters and return description.
|
|
|
|
*/
|
2006-06-04 23:36:52 +02:00
|
|
|
function walk_category_tree() {
|
|
|
|
$args = func_get_args();
|
2008-12-23 13:52:37 +01:00
|
|
|
// the user's options are the third parameter
|
|
|
|
if ( empty($args[2]['walker']) || !is_a($args[2]['walker'], 'Walker') )
|
|
|
|
$walker = new Walker_Category;
|
|
|
|
else
|
|
|
|
$walker = $args[2]['walker'];
|
|
|
|
|
2008-08-06 23:01:46 +02:00
|
|
|
return call_user_func_array(array( &$walker, 'walk' ), $args );
|
2006-03-01 14:30:19 +01:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve HTML dropdown (select) content for category list.
|
|
|
|
*
|
|
|
|
* @uses Walker_CategoryDropdown to create HTML dropdown content.
|
|
|
|
* @since 2.1.0
|
|
|
|
* @see Walker_CategoryDropdown::walk() for parameters and return description.
|
|
|
|
*/
|
2006-06-04 23:36:52 +02:00
|
|
|
function walk_category_dropdown_tree() {
|
|
|
|
$args = func_get_args();
|
2008-12-23 13:52:37 +01:00
|
|
|
// the user's options are the third parameter
|
|
|
|
if ( empty($args[2]['walker']) || !is_a($args[2]['walker'], 'Walker') )
|
|
|
|
$walker = new Walker_CategoryDropdown;
|
|
|
|
else
|
|
|
|
$walker = $args[2]['walker'];
|
|
|
|
|
2008-08-06 23:01:46 +02:00
|
|
|
return call_user_func_array(array( &$walker, 'walk' ), $args );
|
2006-02-27 05:57:30 +01:00
|
|
|
}
|
|
|
|
|
2010-10-30 16:06:08 +02:00
|
|
|
/**
|
|
|
|
* Create HTML list of categories.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @since 2.1.0
|
|
|
|
* @uses Walker
|
|
|
|
*/
|
|
|
|
class Walker_Category extends Walker {
|
|
|
|
/**
|
2013-09-28 20:02:10 +02:00
|
|
|
* What the class handles.
|
|
|
|
*
|
2010-10-30 16:06:08 +02:00
|
|
|
* @see Walker::$tree_type
|
|
|
|
* @since 2.1.0
|
|
|
|
* @var string
|
|
|
|
*/
|
2014-05-19 07:23:14 +02:00
|
|
|
public $tree_type = 'category';
|
2010-10-30 16:06:08 +02:00
|
|
|
|
|
|
|
/**
|
2013-09-28 20:02:10 +02:00
|
|
|
* Database fields to use.
|
|
|
|
*
|
2010-10-30 16:06:08 +02:00
|
|
|
* @see Walker::$db_fields
|
|
|
|
* @since 2.1.0
|
|
|
|
* @todo Decouple this
|
|
|
|
* @var array
|
|
|
|
*/
|
2014-05-19 07:23:14 +02:00
|
|
|
public $db_fields = array ('parent' => 'parent', 'id' => 'term_id');
|
2010-10-30 16:06:08 +02:00
|
|
|
|
|
|
|
/**
|
2013-09-28 20:02:10 +02:00
|
|
|
* Starts the list before the elements are added.
|
|
|
|
*
|
2010-10-30 16:06:08 +02:00
|
|
|
* @see Walker::start_lvl()
|
2013-09-28 20:02:10 +02:00
|
|
|
*
|
2010-10-30 16:06:08 +02:00
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
2013-09-28 20:02:10 +02:00
|
|
|
* @param int $depth Depth of category. Used for tab indentation.
|
|
|
|
* @param array $args An array of arguments. Will only append content if style argument value is 'list'.
|
|
|
|
* @see wp_list_categories()
|
2010-10-30 16:06:08 +02:00
|
|
|
*/
|
2014-05-19 07:23:14 +02:00
|
|
|
public function start_lvl( &$output, $depth = 0, $args = array() ) {
|
2010-10-30 16:06:08 +02:00
|
|
|
if ( 'list' != $args['style'] )
|
|
|
|
return;
|
|
|
|
|
|
|
|
$indent = str_repeat("\t", $depth);
|
|
|
|
$output .= "$indent<ul class='children'>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-09-28 20:02:10 +02:00
|
|
|
* Ends the list of after the elements are added.
|
|
|
|
*
|
2010-10-30 16:06:08 +02:00
|
|
|
* @see Walker::end_lvl()
|
2013-09-28 20:02:10 +02:00
|
|
|
*
|
2010-10-30 16:06:08 +02:00
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
2013-09-28 20:02:10 +02:00
|
|
|
* @param int $depth Depth of category. Used for tab indentation.
|
|
|
|
* @param array $args An array of arguments. Will only append content if style argument value is 'list'.
|
|
|
|
* @wsee wp_list_categories()
|
2010-10-30 16:06:08 +02:00
|
|
|
*/
|
2014-05-19 07:23:14 +02:00
|
|
|
public function end_lvl( &$output, $depth = 0, $args = array() ) {
|
2010-10-30 16:06:08 +02:00
|
|
|
if ( 'list' != $args['style'] )
|
|
|
|
return;
|
|
|
|
|
|
|
|
$indent = str_repeat("\t", $depth);
|
|
|
|
$output .= "$indent</ul>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-09-28 20:02:10 +02:00
|
|
|
* Start the element output.
|
|
|
|
*
|
2010-10-30 16:06:08 +02:00
|
|
|
* @see Walker::start_el()
|
2013-09-28 20:02:10 +02:00
|
|
|
*
|
2010-10-30 16:06:08 +02:00
|
|
|
* @since 2.1.0
|
|
|
|
*
|
2013-09-28 20:02:10 +02:00
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
2010-10-30 16:06:08 +02:00
|
|
|
* @param object $category Category data object.
|
2013-09-28 20:02:10 +02:00
|
|
|
* @param int $depth Depth of category in reference to parents. Default 0.
|
|
|
|
* @param array $args An array of arguments. @see wp_list_categories()
|
|
|
|
* @param int $id ID of the current category.
|
2010-10-30 16:06:08 +02:00
|
|
|
*/
|
2014-05-19 07:23:14 +02:00
|
|
|
public function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) {
|
2014-03-24 02:35:15 +01:00
|
|
|
/** This filter is documented in wp-includes/category-template.php */
|
2014-05-15 19:58:13 +02:00
|
|
|
$cat_name = apply_filters(
|
|
|
|
'list_cats',
|
|
|
|
esc_attr( $category->name ),
|
|
|
|
$category
|
|
|
|
);
|
|
|
|
|
2015-01-03 03:05:22 +01:00
|
|
|
// Don't generate an element if the category name is empty.
|
|
|
|
if ( ! $cat_name ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-05-15 19:58:13 +02:00
|
|
|
$link = '<a href="' . esc_url( get_term_link( $category ) ) . '" ';
|
2014-05-24 15:42:15 +02:00
|
|
|
if ( $args['use_desc_for_title'] && ! empty( $category->description ) ) {
|
2014-03-24 02:35:15 +01:00
|
|
|
/**
|
|
|
|
* Filter the category description for display.
|
|
|
|
*
|
|
|
|
* @since 1.2.0
|
|
|
|
*
|
|
|
|
* @param string $description Category description.
|
|
|
|
* @param object $category Category object.
|
|
|
|
*/
|
2010-10-30 16:06:08 +02:00
|
|
|
$link .= 'title="' . esc_attr( strip_tags( apply_filters( 'category_description', $category->description, $category ) ) ) . '"';
|
2014-03-24 02:35:15 +01:00
|
|
|
}
|
|
|
|
|
2010-10-30 16:06:08 +02:00
|
|
|
$link .= '>';
|
|
|
|
$link .= $cat_name . '</a>';
|
|
|
|
|
2014-05-15 19:58:13 +02:00
|
|
|
if ( ! empty( $args['feed_image'] ) || ! empty( $args['feed'] ) ) {
|
2010-10-30 16:06:08 +02:00
|
|
|
$link .= ' ';
|
|
|
|
|
2014-05-15 19:58:13 +02:00
|
|
|
if ( empty( $args['feed_image'] ) ) {
|
2010-10-30 16:06:08 +02:00
|
|
|
$link .= '(';
|
2014-05-15 19:58:13 +02:00
|
|
|
}
|
2010-10-30 16:06:08 +02:00
|
|
|
|
2014-05-15 19:58:13 +02:00
|
|
|
$link .= '<a href="' . esc_url( get_term_feed_link( $category->term_id, $category->taxonomy, $args['feed_type'] ) ) . '"';
|
2010-10-30 16:06:08 +02:00
|
|
|
|
2014-05-15 19:58:13 +02:00
|
|
|
if ( empty( $args['feed'] ) ) {
|
2010-10-30 16:06:08 +02:00
|
|
|
$alt = ' alt="' . sprintf(__( 'Feed for all posts filed under %s' ), $cat_name ) . '"';
|
|
|
|
} else {
|
2014-05-15 19:58:13 +02:00
|
|
|
$alt = ' alt="' . $args['feed'] . '"';
|
|
|
|
$name = $args['feed'];
|
2014-05-15 21:14:14 +02:00
|
|
|
$link .= empty( $args['title'] ) ? '' : $args['title'];
|
2010-10-30 16:06:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$link .= '>';
|
|
|
|
|
2014-05-15 19:58:13 +02:00
|
|
|
if ( empty( $args['feed_image'] ) ) {
|
2010-10-30 16:06:08 +02:00
|
|
|
$link .= $name;
|
2014-05-15 19:58:13 +02:00
|
|
|
} else {
|
|
|
|
$link .= "<img src='" . $args['feed_image'] . "'$alt" . ' />';
|
|
|
|
}
|
2010-10-30 16:06:08 +02:00
|
|
|
$link .= '</a>';
|
|
|
|
|
2014-05-15 19:58:13 +02:00
|
|
|
if ( empty( $args['feed_image'] ) ) {
|
2010-10-30 16:06:08 +02:00
|
|
|
$link .= ')';
|
2014-05-15 19:58:13 +02:00
|
|
|
}
|
2010-10-30 16:06:08 +02:00
|
|
|
}
|
|
|
|
|
2014-05-15 19:58:13 +02:00
|
|
|
if ( ! empty( $args['show_count'] ) ) {
|
2014-02-28 22:48:13 +01:00
|
|
|
$link .= ' (' . number_format_i18n( $category->count ) . ')';
|
2014-05-15 19:58:13 +02:00
|
|
|
}
|
2010-10-30 16:06:08 +02:00
|
|
|
if ( 'list' == $args['style'] ) {
|
|
|
|
$output .= "\t<li";
|
2015-01-03 03:31:22 +01:00
|
|
|
$css_classes = array(
|
|
|
|
'cat-item',
|
|
|
|
'cat-item-' . $category->term_id,
|
|
|
|
);
|
|
|
|
|
2014-05-15 19:58:13 +02:00
|
|
|
if ( ! empty( $args['current_category'] ) ) {
|
|
|
|
$_current_category = get_term( $args['current_category'], $category->taxonomy );
|
|
|
|
if ( $category->term_id == $args['current_category'] ) {
|
2015-01-03 03:31:22 +01:00
|
|
|
$css_classes[] = 'current-cat';
|
2014-05-15 19:58:13 +02:00
|
|
|
} elseif ( $category->term_id == $_current_category->parent ) {
|
2015-01-03 03:31:22 +01:00
|
|
|
$css_classes[] = 'current-cat-parent';
|
2014-05-15 19:58:13 +02:00
|
|
|
}
|
2010-10-30 16:06:08 +02:00
|
|
|
}
|
2015-01-03 03:31:22 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter the list of CSS classes to include with each category in the list.
|
|
|
|
*
|
|
|
|
* @since 4.2.0
|
|
|
|
*
|
|
|
|
* @see wp_list_categories()
|
|
|
|
*
|
|
|
|
* @param array $css_classes An array of CSS classes to be applied
|
|
|
|
* to each list item.
|
|
|
|
* @param object $category Category data object.
|
|
|
|
* @param int $depth Depth of page, used for padding.
|
|
|
|
* @param array $args An array of arguments.
|
|
|
|
*/
|
|
|
|
$css_classes = implode( ' ', apply_filters( 'category_css_class', $css_classes, $category, $depth, $args ) );
|
|
|
|
|
|
|
|
$output .= ' class="' . $css_classes . '"';
|
2010-10-30 16:06:08 +02:00
|
|
|
$output .= ">$link\n";
|
|
|
|
} else {
|
|
|
|
$output .= "\t$link<br />\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-09-28 20:02:10 +02:00
|
|
|
* Ends the element output, if needed.
|
|
|
|
*
|
2010-10-30 16:06:08 +02:00
|
|
|
* @see Walker::end_el()
|
2013-09-28 20:02:10 +02:00
|
|
|
*
|
2010-10-30 16:06:08 +02:00
|
|
|
* @since 2.1.0
|
|
|
|
*
|
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
2013-09-28 20:02:10 +02:00
|
|
|
* @param object $page Not used.
|
|
|
|
* @param int $depth Depth of category. Not used.
|
|
|
|
* @param array $args An array of arguments. Only uses 'list' for whether should append to output. @see wp_list_categories()
|
2010-10-30 16:06:08 +02:00
|
|
|
*/
|
2014-05-19 07:23:14 +02:00
|
|
|
public function end_el( &$output, $page, $depth = 0, $args = array() ) {
|
2010-10-30 16:06:08 +02:00
|
|
|
if ( 'list' != $args['style'] )
|
|
|
|
return;
|
|
|
|
|
|
|
|
$output .= "</li>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create HTML dropdown list of Categories.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @since 2.1.0
|
|
|
|
* @uses Walker
|
|
|
|
*/
|
|
|
|
class Walker_CategoryDropdown extends Walker {
|
|
|
|
/**
|
|
|
|
* @see Walker::$tree_type
|
|
|
|
* @since 2.1.0
|
|
|
|
* @var string
|
|
|
|
*/
|
2014-05-19 07:23:14 +02:00
|
|
|
public $tree_type = 'category';
|
2010-10-30 16:06:08 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @see Walker::$db_fields
|
|
|
|
* @since 2.1.0
|
|
|
|
* @todo Decouple this
|
|
|
|
* @var array
|
|
|
|
*/
|
2014-05-19 07:23:14 +02:00
|
|
|
public $db_fields = array ('parent' => 'parent', 'id' => 'term_id');
|
2010-10-30 16:06:08 +02:00
|
|
|
|
|
|
|
/**
|
2013-09-28 20:02:10 +02:00
|
|
|
* Start the element output.
|
|
|
|
*
|
2010-10-30 16:06:08 +02:00
|
|
|
* @see Walker::start_el()
|
|
|
|
* @since 2.1.0
|
|
|
|
*
|
2013-09-28 20:02:10 +02:00
|
|
|
* @param string $output Passed by reference. Used to append additional content.
|
2010-10-30 16:06:08 +02:00
|
|
|
* @param object $category Category data object.
|
2013-09-28 20:02:10 +02:00
|
|
|
* @param int $depth Depth of category. Used for padding.
|
2014-12-30 22:31:23 +01:00
|
|
|
* @param array $args Uses 'selected', 'show_count', and 'value_field' keys, if they exist.
|
|
|
|
* See {@see wp_dropdown_categories()}.
|
2010-10-30 16:06:08 +02:00
|
|
|
*/
|
2014-05-19 07:23:14 +02:00
|
|
|
public function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) {
|
2010-10-30 16:06:08 +02:00
|
|
|
$pad = str_repeat(' ', $depth * 3);
|
|
|
|
|
2014-03-24 02:35:15 +01:00
|
|
|
/** This filter is documented in wp-includes/category-template.php */
|
|
|
|
$cat_name = apply_filters( 'list_cats', $category->name, $category );
|
|
|
|
|
2014-12-30 22:31:23 +01:00
|
|
|
if ( ! isset( $args['value_field'] ) || ! isset( $category->{$args['value_field']} ) ) {
|
|
|
|
$args['value_field'] = 'term_id';
|
|
|
|
}
|
|
|
|
|
|
|
|
$output .= "\t<option class=\"level-$depth\" value=\"" . esc_attr( $category->{$args['value_field']} ) . "\"";
|
|
|
|
|
2010-10-30 16:06:08 +02:00
|
|
|
if ( $category->term_id == $args['selected'] )
|
|
|
|
$output .= ' selected="selected"';
|
|
|
|
$output .= '>';
|
|
|
|
$output .= $pad.$cat_name;
|
|
|
|
if ( $args['show_count'] )
|
2014-02-28 22:48:13 +01:00
|
|
|
$output .= ' ('. number_format_i18n( $category->count ) .')';
|
2010-10-30 16:06:08 +02:00
|
|
|
$output .= "</option>\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-04-10 23:23:11 +02:00
|
|
|
//
|
|
|
|
// Tags
|
|
|
|
//
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve the link to the tag.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
2010-10-17 07:41:22 +02:00
|
|
|
* @see get_term_link()
|
2008-09-25 16:16:27 +02:00
|
|
|
*
|
2011-02-10 22:48:40 +01:00
|
|
|
* @param int|object $tag Tag ID or object.
|
2011-02-10 21:17:54 +01:00
|
|
|
* @return string Link on success, empty string if tag does not exist.
|
2008-09-25 16:16:27 +02:00
|
|
|
*/
|
2011-02-10 21:17:54 +01:00
|
|
|
function get_tag_link( $tag ) {
|
2011-02-10 22:48:40 +01:00
|
|
|
if ( ! is_object( $tag ) )
|
|
|
|
$tag = (int) $tag;
|
|
|
|
|
|
|
|
$tag = get_term_link( $tag, 'post_tag' );
|
|
|
|
|
|
|
|
if ( is_wp_error( $tag ) )
|
|
|
|
return '';
|
|
|
|
|
|
|
|
return $tag;
|
2007-04-10 23:23:11 +02:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve the tags for a post.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*
|
|
|
|
* @param int $id Post ID.
|
2013-06-21 14:45:11 +02:00
|
|
|
* @return array|bool Array of tag objects on success, false on failure.
|
2008-09-25 16:16:27 +02:00
|
|
|
*/
|
2007-04-10 23:23:11 +02:00
|
|
|
function get_the_tags( $id = 0 ) {
|
2014-03-24 02:35:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter the array of tags for the given post.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*
|
|
|
|
* @see get_the_terms()
|
|
|
|
*
|
|
|
|
* @param array $terms An array of tags for the given post.
|
|
|
|
*/
|
2008-08-06 23:01:46 +02:00
|
|
|
return apply_filters( 'get_the_tags', get_the_terms( $id, 'post_tag' ) );
|
2008-03-26 07:37:19 +01:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve the tags for a post formatted as a string.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*
|
|
|
|
* @param string $before Optional. Before tags.
|
|
|
|
* @param string $sep Optional. Between tags.
|
|
|
|
* @param string $after Optional. After tags.
|
2012-04-20 12:06:05 +02:00
|
|
|
* @param int $id Optional. Post ID. Defaults to the current post.
|
2014-08-13 01:48:16 +02:00
|
|
|
* @return string|bool|WP_Error A list of tags on success, false if there are no terms, WP_Error on failure.
|
2008-09-25 16:16:27 +02:00
|
|
|
*/
|
2012-04-20 12:06:05 +02:00
|
|
|
function get_the_tag_list( $before = '', $sep = '', $after = '', $id = 0 ) {
|
2014-03-24 02:35:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter the tags list for a given post.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*
|
|
|
|
* @param string $tag_list List of tags.
|
|
|
|
* @param string $before String to use before tags.
|
|
|
|
* @param string $sep String to use between the tags.
|
|
|
|
* @param string $after String to use after tags.
|
|
|
|
* @param int $id Post ID.
|
|
|
|
*/
|
2012-04-20 12:06:05 +02:00
|
|
|
return apply_filters( 'the_tags', get_the_term_list( $id, 'post_tag', $before, $sep, $after ), $before, $sep, $after, $id );
|
2008-03-26 07:37:19 +01:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve the tags for a post.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*
|
|
|
|
* @param string $before Optional. Before list.
|
|
|
|
* @param string $sep Optional. Separate items using this.
|
|
|
|
* @param string $after Optional. After list.
|
|
|
|
*/
|
2009-04-08 01:54:16 +02:00
|
|
|
function the_tags( $before = null, $sep = ', ', $after = '' ) {
|
|
|
|
if ( null === $before )
|
|
|
|
$before = __('Tags: ');
|
|
|
|
echo get_the_tag_list($before, $sep, $after);
|
2008-03-26 07:37:19 +01:00
|
|
|
}
|
|
|
|
|
2009-04-09 18:00:40 +02:00
|
|
|
/**
|
|
|
|
* Retrieve tag description.
|
|
|
|
*
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.8.0
|
2009-04-09 18:00:40 +02:00
|
|
|
*
|
|
|
|
* @param int $tag Optional. Tag ID. Will use global tag ID by default.
|
|
|
|
* @return string Tag description, available.
|
|
|
|
*/
|
|
|
|
function tag_description( $tag = 0 ) {
|
|
|
|
return term_description( $tag );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve term description.
|
|
|
|
*
|
2013-12-24 19:57:12 +01:00
|
|
|
* @since 2.8.0
|
2009-04-09 18:00:40 +02:00
|
|
|
*
|
|
|
|
* @param int $term Optional. Term ID. Will use global term ID by default.
|
2012-01-06 19:31:43 +01:00
|
|
|
* @param string $taxonomy Optional taxonomy name. Defaults to 'post_tag'.
|
2009-04-09 18:00:40 +02:00
|
|
|
* @return string Term description, available.
|
|
|
|
*/
|
|
|
|
function term_description( $term = 0, $taxonomy = 'post_tag' ) {
|
2013-09-10 04:28:11 +02:00
|
|
|
if ( ! $term && ( is_tax() || is_tag() || is_category() ) ) {
|
2010-10-31 12:02:17 +01:00
|
|
|
$term = get_queried_object();
|
2013-09-10 04:28:11 +02:00
|
|
|
if ( $term ) {
|
|
|
|
$taxonomy = $term->taxonomy;
|
|
|
|
$term = $term->term_id;
|
|
|
|
}
|
2009-04-09 18:00:40 +02:00
|
|
|
}
|
2010-03-25 18:28:16 +01:00
|
|
|
$description = get_term_field( 'description', $term, $taxonomy );
|
|
|
|
return is_wp_error( $description ) ? '' : $description;
|
2009-04-09 18:00:40 +02:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Retrieve the terms of the taxonomy that are attached to the post.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2013-06-21 14:45:11 +02:00
|
|
|
* @param int|object $post Post ID or object.
|
2008-09-25 16:16:27 +02:00
|
|
|
* @param string $taxonomy Taxonomy name.
|
2014-08-13 01:48:16 +02:00
|
|
|
* @return array|bool|WP_Error Array of term objects on success, false if there are no terms
|
|
|
|
* or the post does not exist, WP_Error on failure.
|
2008-09-25 16:16:27 +02:00
|
|
|
*/
|
2012-09-04 18:29:28 +02:00
|
|
|
function get_the_terms( $post, $taxonomy ) {
|
|
|
|
if ( ! $post = get_post( $post ) )
|
|
|
|
return false;
|
2007-04-10 23:23:11 +02:00
|
|
|
|
2012-09-04 18:29:28 +02:00
|
|
|
$terms = get_object_term_cache( $post->ID, $taxonomy );
|
2010-11-19 18:09:21 +01:00
|
|
|
if ( false === $terms ) {
|
2012-09-04 18:29:28 +02:00
|
|
|
$terms = wp_get_object_terms( $post->ID, $taxonomy );
|
|
|
|
wp_cache_add($post->ID, $terms, $taxonomy . '_relationships');
|
2010-11-19 18:09:21 +01:00
|
|
|
}
|
2010-12-13 22:21:50 +01:00
|
|
|
|
2014-03-24 02:35:15 +01:00
|
|
|
/**
|
|
|
|
* Filter the list of terms attached to the given post.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
2014-08-11 23:17:17 +02:00
|
|
|
* @param array|WP_Error $terms List of attached terms, or WP_Error on failure.
|
|
|
|
* @param int $post_id Post ID.
|
|
|
|
* @param string $taxonomy Name of the taxonomy.
|
2014-03-24 02:35:15 +01:00
|
|
|
*/
|
2012-09-04 18:29:28 +02:00
|
|
|
$terms = apply_filters( 'get_the_terms', $terms, $post->ID, $taxonomy );
|
2010-11-13 15:08:27 +01:00
|
|
|
|
2008-03-26 07:37:19 +01:00
|
|
|
if ( empty( $terms ) )
|
2007-09-04 01:32:58 +02:00
|
|
|
return false;
|
2008-03-26 07:37:19 +01:00
|
|
|
|
|
|
|
return $terms;
|
2007-04-10 23:23:11 +02:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
2009-12-03 16:52:11 +01:00
|
|
|
* Retrieve a post's terms as a list with specified format.
|
2008-09-25 16:16:27 +02:00
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2009-12-03 16:52:11 +01:00
|
|
|
* @param int $id Post ID.
|
2008-09-25 16:16:27 +02:00
|
|
|
* @param string $taxonomy Taxonomy name.
|
|
|
|
* @param string $before Optional. Before list.
|
|
|
|
* @param string $sep Optional. Separate items using this.
|
|
|
|
* @param string $after Optional. After list.
|
2014-08-13 01:48:16 +02:00
|
|
|
* @return string|bool|WP_Error A list of terms on success, false if there are no terms, WP_Error on failure.
|
2008-09-25 16:16:27 +02:00
|
|
|
*/
|
2012-04-20 12:06:05 +02:00
|
|
|
function get_the_term_list( $id, $taxonomy, $before = '', $sep = '', $after = '' ) {
|
2008-08-06 23:01:46 +02:00
|
|
|
$terms = get_the_terms( $id, $taxonomy );
|
2007-04-10 23:23:11 +02:00
|
|
|
|
2008-08-06 23:01:46 +02:00
|
|
|
if ( is_wp_error( $terms ) )
|
2008-03-26 07:37:19 +01:00
|
|
|
return $terms;
|
|
|
|
|
|
|
|
if ( empty( $terms ) )
|
2007-04-10 23:23:11 +02:00
|
|
|
return false;
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2014-12-20 23:47:22 +01:00
|
|
|
$links = array();
|
|
|
|
|
2008-03-26 07:37:19 +01:00
|
|
|
foreach ( $terms as $term ) {
|
2009-05-14 06:09:01 +02:00
|
|
|
$link = get_term_link( $term, $taxonomy );
|
2014-12-20 23:47:22 +01:00
|
|
|
if ( is_wp_error( $link ) ) {
|
2007-09-18 18:32:22 +02:00
|
|
|
return $link;
|
2014-12-20 23:47:22 +01:00
|
|
|
}
|
|
|
|
$links[] = '<a href="' . esc_url( $link ) . '" rel="tag">' . $term->name . '</a>';
|
2007-09-18 18:32:22 +02:00
|
|
|
}
|
2007-04-10 23:23:11 +02:00
|
|
|
|
2014-03-24 02:35:15 +01:00
|
|
|
/**
|
|
|
|
* Filter the term links for a given taxonomy.
|
|
|
|
*
|
2014-11-30 13:10:23 +01:00
|
|
|
* The dynamic portion of the filter name, `$taxonomy`, refers
|
2014-03-24 02:35:15 +01:00
|
|
|
* to the taxonomy slug.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2014-12-20 23:47:22 +01:00
|
|
|
* @param array $links An array of term links.
|
2014-03-24 02:35:15 +01:00
|
|
|
*/
|
2014-12-20 23:47:22 +01:00
|
|
|
$term_links = apply_filters( "term_links-$taxonomy", $links );
|
2007-04-10 23:23:11 +02:00
|
|
|
|
2008-08-06 23:01:46 +02:00
|
|
|
return $before . join( $sep, $term_links ) . $after;
|
2007-08-14 05:44:49 +02:00
|
|
|
}
|
|
|
|
|
2008-09-25 16:16:27 +02:00
|
|
|
/**
|
|
|
|
* Display the terms in a list.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*
|
2010-10-20 00:41:34 +02:00
|
|
|
* @param int $id Post ID.
|
2008-09-25 16:16:27 +02:00
|
|
|
* @param string $taxonomy Taxonomy name.
|
|
|
|
* @param string $before Optional. Before list.
|
|
|
|
* @param string $sep Optional. Separate items using this.
|
|
|
|
* @param string $after Optional. After list.
|
2014-12-01 02:34:24 +01:00
|
|
|
* @return false|null False on WordPress error. Returns null when displaying.
|
2008-09-25 16:16:27 +02:00
|
|
|
*/
|
2012-04-20 12:06:05 +02:00
|
|
|
function the_terms( $id, $taxonomy, $before = '', $sep = ', ', $after = '' ) {
|
2009-09-04 10:47:36 +02:00
|
|
|
$term_list = get_the_term_list( $id, $taxonomy, $before, $sep, $after );
|
|
|
|
|
|
|
|
if ( is_wp_error( $term_list ) )
|
2007-09-18 18:32:22 +02:00
|
|
|
return false;
|
2009-09-04 10:47:36 +02:00
|
|
|
|
2014-03-24 02:35:15 +01:00
|
|
|
/**
|
|
|
|
* Filter the list of terms to display.
|
|
|
|
*
|
|
|
|
* @since 2.9.0
|
|
|
|
*
|
|
|
|
* @param array $term_list List of terms to display.
|
|
|
|
* @param string $taxonomy The taxonomy name.
|
|
|
|
* @param string $before String to use before the terms.
|
|
|
|
* @param string $sep String to use between the terms.
|
|
|
|
* @param string $after String to use after the terms.
|
|
|
|
*/
|
|
|
|
echo apply_filters( 'the_terms', $term_list, $taxonomy, $before, $sep, $after );
|
2007-04-10 23:23:11 +02:00
|
|
|
}
|
|
|
|
|
2010-10-01 19:44:53 +02:00
|
|
|
/**
|
|
|
|
* Check if the current post has any of given category.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
2012-01-06 19:31:43 +01:00
|
|
|
* @param string|int|array $category Optional. The category name/term_id/slug or array of them to check for.
|
2010-10-01 19:44:53 +02:00
|
|
|
* @param int|object $post Optional. Post to check instead of the current post.
|
|
|
|
* @return bool True if the current post has any of the given categories (or any category, if no category specified).
|
|
|
|
*/
|
|
|
|
function has_category( $category = '', $post = null ) {
|
|
|
|
return has_term( $category, 'category', $post );
|
|
|
|
}
|
|
|
|
|
2008-06-20 15:52:18 +02:00
|
|
|
/**
|
2008-12-10 00:31:11 +01:00
|
|
|
* Check if the current post has any of given tags.
|
|
|
|
*
|
|
|
|
* The given tags are checked against the post's tags' term_ids, names and slugs.
|
|
|
|
* Tags given as integers will only be checked against the post's tags' term_ids.
|
|
|
|
* If no tags are given, determines if post has any tags.
|
2008-06-20 15:52:18 +02:00
|
|
|
*
|
2008-12-10 00:31:11 +01:00
|
|
|
* Prior to v2.7 of WordPress, tags given as integers would also be checked against the post's tags' names and slugs (in addition to term_ids)
|
|
|
|
* Prior to v2.7, this function could only be used in the WordPress Loop.
|
|
|
|
* As of 2.7, the function can be used anywhere if it is provided a post ID or post object.
|
2008-09-25 16:16:27 +02:00
|
|
|
*
|
|
|
|
* @since 2.6.0
|
2008-06-20 15:52:18 +02:00
|
|
|
*
|
2008-12-10 00:31:11 +01:00
|
|
|
* @param string|int|array $tag Optional. The tag name/term_id/slug or array of them to check for.
|
2010-10-01 19:44:53 +02:00
|
|
|
* @param int|object $post Optional. Post to check instead of the current post. (since 2.7.0)
|
|
|
|
* @return bool True if the current post has any of the given tags (or any tag, if no tag specified).
|
2008-06-20 15:52:18 +02:00
|
|
|
*/
|
2010-10-01 19:44:53 +02:00
|
|
|
function has_tag( $tag = '', $post = null ) {
|
|
|
|
return has_term( $tag, 'post_tag', $post );
|
|
|
|
}
|
2008-06-20 15:52:18 +02:00
|
|
|
|
2010-10-01 19:44:53 +02:00
|
|
|
/**
|
|
|
|
* Check if the current post has any of given terms.
|
2010-10-19 09:48:22 +02:00
|
|
|
*
|
2010-10-01 19:44:53 +02:00
|
|
|
* The given terms are checked against the post's terms' term_ids, names and slugs.
|
|
|
|
* Terms given as integers will only be checked against the post's terms' term_ids.
|
|
|
|
* If no terms are given, determines if post has any terms.
|
|
|
|
*
|
|
|
|
* @since 3.1.0
|
|
|
|
*
|
|
|
|
* @param string|int|array $term Optional. The term name/term_id/slug or array of them to check for.
|
2010-11-11 18:02:14 +01:00
|
|
|
* @param string $taxonomy Taxonomy name
|
2010-11-18 20:12:48 +01:00
|
|
|
* @param int|object $post Optional. Post to check instead of the current post.
|
2010-10-01 19:44:53 +02:00
|
|
|
* @return bool True if the current post has any of the given tags (or any tag, if no tag specified).
|
|
|
|
*/
|
|
|
|
function has_term( $term = '', $taxonomy = '', $post = null ) {
|
|
|
|
$post = get_post($post);
|
|
|
|
|
|
|
|
if ( !$post )
|
2008-12-10 00:31:11 +01:00
|
|
|
return false;
|
|
|
|
|
2010-10-01 19:44:53 +02:00
|
|
|
$r = is_object_in_term( $post->ID, $taxonomy, $term );
|
2008-12-10 00:31:11 +01:00
|
|
|
if ( is_wp_error( $r ) )
|
|
|
|
return false;
|
2010-10-01 19:44:53 +02:00
|
|
|
|
2008-12-10 00:31:11 +01:00
|
|
|
return $r;
|
2008-06-20 15:52:18 +02:00
|
|
|
}
|