mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-21 22:15:28 +00:00
Some tag api additions from andy.
git-svn-id: http://svn.automattic.com/wordpress/trunk@5912 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
763f8b8821
commit
851ce58496
@ -128,7 +128,7 @@ function &get_tags($args = '') {
|
||||
return apply_filters('get_tags', $cache[$key], $args);
|
||||
|
||||
|
||||
$tags = get_terms('post_tag');
|
||||
$tags = get_terms('post_tag', $args);
|
||||
|
||||
if ( empty($tags) )
|
||||
return array();
|
||||
|
@ -277,6 +277,21 @@ function single_cat_title($prefix = '', $display = true ) {
|
||||
}
|
||||
|
||||
|
||||
function single_tag_title($prefix = '', $display = true ) {
|
||||
$tag_id = intval( get_query_var('tag_id') );
|
||||
if ( !empty($tag_id) ) {
|
||||
$my_tag = &get_term($tag_id, 'post_tag');
|
||||
$my_tag_name = apply_filters('single_tag_title', $my_tag->name);
|
||||
if ( !empty($my_tag_name) ) {
|
||||
if ( $display )
|
||||
echo $prefix.strip_tags($my_tag_name);
|
||||
else
|
||||
return strip_tags($my_tag_name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function single_month_title($prefix = '', $display = true ) {
|
||||
global $wp_locale;
|
||||
|
||||
|
@ -1294,6 +1294,11 @@ class WP_Query {
|
||||
$category = &get_category($cat);
|
||||
$this->queried_object = &$category;
|
||||
$this->queried_object_id = (int) $cat;
|
||||
} else if ($this->is_tag) {
|
||||
$tag_id = $this->get('tag_id');
|
||||
$tag = &get_term($tag_id, 'post_tag');
|
||||
$this->queried_object = &$tag;
|
||||
$this->queried_object_id = (int) $tag_id;
|
||||
} else if ($this->is_posts_page) {
|
||||
$this->queried_object = & get_page(get_option('page_for_posts'));
|
||||
$this->queried_object_id = (int) $this->queried_object->ID;
|
||||
@ -1402,4 +1407,4 @@ function setup_postdata($post) {
|
||||
return true;
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user