Title: MultiTags
Author: Stefan
Published: <strong>2010-يىلى 13-سېنتەبىر</strong>
Last modified: 2015-يىلى 27-يانۋار

---

قىستۇرما ئىزدە

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://s.w.org/plugins/geopattern-icon/multitags.svg)

# MultiTags

 يازغۇچى [Stefan](https://profiles.wordpress.org/svogel/)

[چۈشۈر](https://downloads.wordpress.org/plugin/multitags.0.6.zip)

 * [تەپسىلاتلار](https://ug.wordpress.org/plugins/multitags/#description)
 * [باھالاشلار](https://ug.wordpress.org/plugins/multitags/#reviews)
 *  [ئورنىتىش](https://ug.wordpress.org/plugins/multitags/#installation)
 * [ئىجادىيەت](https://ug.wordpress.org/plugins/multitags/#developers)

 [قوللاش](https://wordpress.org/support/plugin/multitags/)

## چۈشەندۈرۈش

Ever noticed that on tag-pages multiple tags are possible? E.g. if you want to show
all
 posts having «tag1» AND «tag2», just go to http://yourwordpressblog/tag/tag1
+tag2

But only «tag1» is correctly displayed (see screenshots).
 With this plugin you 
can use more than one tag correctly. This is especially interesting if you want 
to optimize some key phrases (like «tag1 tag2») for searchengines.

Moreover this plugin can add the description of the tags to your tag-pages, simply
put

    ```
    <?php echo multi_tags_get_description('<p>', '</p>'); ?>
    ```

into your theme-file «tag.php».
 To display the correct tags, just replace the call
to

    ```
    single_tag_title( '', false ) 
    ```

with

    ```
    if (function_exists('multi_tags_get_title'))
        echo multi_tags_get_title('and', 'or')
    else
        single_tag_title( '', false )
    ```

The inclusion of your tags into «meta keywords» resp. the inclusion of the tag-descriptions

in «meta description» is done by the plugin. Simply check the corresponding checkboxes
in the MultiTags-setting-page.

For more examples and background information have a look at:

http://www.vogel-nest.de/wp_multitags_plugin

### Thanks

To Frank Bueltge http://bueltge.de for motivation and checking the first draft.

## ئېكران كەسمىسى

[⌊The usual display without MultiTags-plugin without_multitags.png⌉⌊The usual display
without MultiTags-plugin without_multitags.png⌉[

The usual display without MultiTags-plugin without_multitags.png

[⌊Better title, heading on multiple tags with the MultiTags-plugin with_multitags.
png⌉⌊Better title, heading on multiple tags with the MultiTags-plugin with_multitags.
png⌉[

Better title, heading on multiple tags with the MultiTags-plugin with_multitags.
png

[⌊Settings provided, choose if you want to add keywords/description in head-meta-
tag of your tag-pages settings.png⌉⌊Settings provided, choose if you want to add
keywords/description in head-meta-tag of your tag-pages settings.png⌉[

Settings provided, choose if you want to add keywords/description in head-meta-tag
of your tag-pages settings.png

[⌊Wordpress now provides the correct multiple-tag-feed⌉⌊Wordpress now provides the
correct multiple-tag-feed⌉[

Wordpress now provides the correct multiple-tag-feed

## ئورنىتىش

Just the usual procedure

 1. Download und unpack the plugin
 2. Upload the directory «multitags» to the `/wp-content/plugins/` directory
 3. Activate the plugin through the ›Plugins‹ menu in WordPress
 4. adapt the settings on the settings-page «MultiTags»
 5. to display the correct headers on the tags-pages put `multi_tags_get_title('and','
    or')` into your tag.php in your theme-folder

## FAQ

  How to provide the correct feed-url on multi-tag-pages?

You have to handcraft a little bit and change the core. However I don’t recommend
it, because after upgrading you
 have to insert your change again. So be careful.
Go to wp-includes/general-template.php and find the lines (around lineno 2294):

    ```
    $title = sprintf( $args['tagtitle'], get_bloginfo('name'), $args['separator'], $term->name );
    $href = get_tag_feed_link( $term->term_id );
    ```

replace it with:

    ```
    if ( function_exists('multi_tags_get_title') )
        $title = sprintf( $args['tagtitle'], get_bloginfo('name'), $args['separator'], multi_tags_get_title() );
    else
        $title = sprintf( $args['tagtitle'], get_bloginfo('name'), $args['separator'], $term->name );
    if ( function_exists('multi_tags_get_tag_feed_link') )
        $href = multi_tags_get_tag_feed_link( $term->term_id );
    else
        $href = get_tag_feed_link( $term->term_id );
    ```

## باھالاشلار

بۇ قىستۇرمىغا تېخى باھا يېزىلمىدى.

## تۆھپىكار ۋە ئىجادكار

«MultiTags» كودى ئوچۇق يۇمشاق دېتال. تۆۋەندىكى كىشىلەر بۇ قىستۇرمىغا تۆھپە قوشقان.

تۆھپىكار

 *   [ Stefan ](https://profiles.wordpress.org/svogel/)

[«MultiTags» نى تىلىڭىزغا تەرجىمە قىلىڭ](https://translate.wordpress.org/projects/wp-plugins/multitags)

### ئىجادىيەتكە قىزىقامسىز؟

[كودقا كۆز يۈگۈرتۈپ](https://plugins.trac.wordpress.org/browser/multitags/)، [SVN خەزىنە](https://plugins.svn.wordpress.org/multitags/)
تەكشۈرۈپ ياكى [RSS](https://plugins.trac.wordpress.org/log/multitags/?limit=100&mode=stop_on_copy&format=rss)
ئارقىلىق [ئىجادىيەت خاتىرىسى](https://plugins.trac.wordpress.org/log/multitags/)
گە مۇشتەرى بولغىلى بولىدۇ.

## ئۆزگىرىش خاتىرىسى

#### 0.6

Adapted to wordpress >= 4
 Corrected feed-url-code in readme.txt

#### 0.5

 * fixed dump slipped in letter, that lead to syntax-error
 * I’m really sorry.

#### 0.4

 * fixed typo in readme.txt
 * now testet with 3.2.1
 * MultiTags ist broken in WP 3.1.1 due to a bug in WP https://core.trac.wordpress.
   org/ticket/17054

#### 0.3

 * added function multi_tags_get_tag_feed_link to support correct feeds

#### 0.2

 * corrected fatal-error on activation
 * several clean-ups
 * corrected versioning – sorry, my first plugin :-/

#### 0.1

initial version

## Meta

 *  Version **0.6**
 *  ئاخىرقى يېڭىلانغان ۋاقىت **11 يىل بۇرۇن**
 *  ئاكتىپ ئورنىتىش سانى **10+**
 *  WordPress نەشرى ** 2.8 ياكى يۇقىرى **
 *  **4.1.42** دا سىنالغان
 *  تىل
 * [English (US)](https://wordpress.org/plugins/multitags/)
 * بەلگە
 * [meta description](https://ug.wordpress.org/plugins/tags/meta-description/)[meta keywords](https://ug.wordpress.org/plugins/tags/meta-keywords/)
   [multiple tags](https://ug.wordpress.org/plugins/tags/multiple-tags/)[seo](https://ug.wordpress.org/plugins/tags/seo/)
 *  [ئالىي كۆرۈنۈش](https://ug.wordpress.org/plugins/multitags/advanced/)

## دەرىجە

 5/5 يۇلتۇز

 *  [  1 5-يۇلتۇز باھالاش     ](https://wordpress.org/support/plugin/multitags/reviews/?filter=5)
 *  [  0 4-يۇلتۇز باھالاش     ](https://wordpress.org/support/plugin/multitags/reviews/?filter=4)
 *  [  0 3-يۇلتۇز باھالاش     ](https://wordpress.org/support/plugin/multitags/reviews/?filter=3)
 *  [  0 2-يۇلتۇز باھالاش     ](https://wordpress.org/support/plugin/multitags/reviews/?filter=2)
 *  [  0 1-يۇلتۇز باھالاش     ](https://wordpress.org/support/plugin/multitags/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/multitags/reviews/#new-post)

[بارلىق ئىنكاسنى كۆرسەت](https://wordpress.org/support/plugin/multitags/reviews/)

## تۆھپىكار

 *   [ Stefan ](https://profiles.wordpress.org/svogel/)

## قوللاش

چۈشەندۈرۈشىڭىز بارمۇ؟ ياردەم لازىممۇ؟

 [قوللاش مۇنبىرىنى كۆرسەت](https://wordpress.org/support/plugin/multitags/)

## ئىئانە

بۇ قىستۇرمىنىڭ ياخشىلىنىشىنى قوللامسىز؟

 [ بۇ قىستۇرمىغا ئىئانە قىلىش ](http://www.piratenspielzeug.com)