{"id":10521,"date":"2010-09-13T19:10:58","date_gmt":"2010-09-13T19:10:58","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/multitags\/"},"modified":"2015-01-27T20:36:24","modified_gmt":"2015-01-27T20:36:24","slug":"multitags","status":"publish","type":"plugin","link":"https:\/\/pap-aw.wordpress.org\/plugins\/multitags\/","author":5655032,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"0.6","stable_tag":"0.6","tested":"4.1.42","requires":"2.8","requires_php":"","requires_plugins":"","header_name":"MultiTags","header_author":"Stefan Vogel","header_description":"","assets_banners_color":"","last_updated":"2015-01-27 20:36:24","external_support_url":"","external_repository_url":"","donate_link":"http:\/\/www.piratenspielzeug.com","header_plugin_uri":"http:\/\/www.vogel-nest.de\/wp_multitags_plugin","header_author_uri":"http:\/\/www.vogel-nest.de","rating":5,"author_block_rating":0,"active_installs":10,"downloads":3389,"num_ratings":1,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":[],"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":0,"5":"1"},"assets_icons":[],"assets_banners":[],"assets_blueprints":{},"all_blocks":[],"tagged_versions":["0.2","0.3","0.4","0.5","0.6"],"block_files":[],"assets_screenshots":{"screenshot-4.png":{"filename":"screenshot-4.png","revision":"1567150","resolution":"4","location":"plugin"},"screenshot-2.png":{"filename":"screenshot-2.png","revision":"1567150","resolution":"2","location":"plugin"},"screenshot-3.png":{"filename":"screenshot-3.png","revision":"1567150","resolution":"3","location":"plugin"},"screenshot-1.png":{"filename":"screenshot-1.png","revision":"1567150","resolution":"1","location":"plugin"}},"screenshots":{"1":"The usual display without MultiTags-plugin without_multitags.png","2":"Better title, heading on multiple tags with the MultiTags-plugin with_multitags.png","3":"Settings provided, choose if you want to add keywords\/description in head-meta-tag of your tag-pages settings.png","4":"Wordpress now provides the correct multiple-tag-feed"},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[5777,467,44373,44425,186],"plugin_category":[55],"plugin_contributors":[92289],"plugin_business_model":[],"class_list":["post-10521","plugin","type-plugin","status-publish","hentry","plugin_tags-meta-description","plugin_tags-meta-keywords","plugin_tags-multiple-tags","plugin_tags-multitags","plugin_tags-seo","plugin_category-seo-and-marketing","plugin_contributors-svogel","plugin_committers-svogel"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/multitags.svg","icon_2x":false,"generated":true},"screenshots":[{"src":"https:\/\/ps.w.org\/multitags\/trunk\/screenshot-1.png?rev=1567150","caption":"The usual display without MultiTags-plugin without_multitags.png"},{"src":"https:\/\/ps.w.org\/multitags\/trunk\/screenshot-2.png?rev=1567150","caption":"Better title, heading on multiple tags with the MultiTags-plugin with_multitags.png"},{"src":"https:\/\/ps.w.org\/multitags\/trunk\/screenshot-3.png?rev=1567150","caption":"Settings provided, choose if you want to add keywords\/description in head-meta-tag of your tag-pages settings.png"},{"src":"https:\/\/ps.w.org\/multitags\/trunk\/screenshot-4.png?rev=1567150","caption":"Wordpress now provides the correct multiple-tag-feed"}],"raw_content":"<!--section=description-->\n<p>Ever noticed that on tag-pages multiple tags are possible? E.g. if you want to show all\nposts having \"tag1\" AND \"tag2\", just go to\nhttp:\/\/yourwordpressblog\/tag\/tag1+tag2<\/p>\n\n<p>But only \"tag1\" is correctly displayed (see screenshots). \nWith this plugin you can use more than one tag correctly. This is especially interesting if\nyou want to optimize some key phrases (like \"tag1 tag2\") for searchengines.<\/p>\n\n<p>Moreover this plugin can add the description of the tags to your tag-pages, simply put<\/p>\n\n<pre><code>&lt;?php echo multi_tags_get_description('&lt;p&gt;', '&lt;\/p&gt;'); ?&gt;\n<\/code><\/pre>\n\n<p>into your theme-file \"tag.php\".\nTo display the correct tags, just replace the call to<\/p>\n\n<pre><code>single_tag_title( '', false ) \n<\/code><\/pre>\n\n<p>with<\/p>\n\n<pre><code>if (function_exists('multi_tags_get_title'))\n    echo multi_tags_get_title('and', 'or')\nelse\n    single_tag_title( '', false )\n<\/code><\/pre>\n\n<p>The inclusion of your tags into \"meta keywords\" resp. the inclusion of the tag-descriptions \nin \"meta description\" is done by the plugin. \nSimply check the corresponding checkboxes in the MultiTags-setting-page.<\/p>\n\n<p>For more examples and background information have a look at:<\/p>\n\n<p>http:\/\/www.vogel-nest.de\/wp_multitags_plugin<\/p>\n\n<h3>Thanks<\/h3>\n\n<p>To Frank Bueltge http:\/\/bueltge.de for motivation and checking the first draft.<\/p>\n\n<!--section=installation-->\n<p>Just the usual procedure<\/p>\n\n<ol>\n<li>Download und unpack the plugin <\/li>\n<li>Upload the directory \"multitags\" to the <code>\/wp-content\/plugins\/<\/code> directory<\/li>\n<li>Activate the plugin through the 'Plugins' menu in WordPress<\/li>\n<li>adapt the settings on the settings-page \"MultiTags\"<\/li>\n<li>to display the correct headers on the tags-pages put <code>multi_tags_get_title('and', 'or')<\/code> into your tag.php in your theme-folder<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt>How to provide the correct feed-url on multi-tag-pages?<\/dt>\n<dd><p>You have to handcraft a little bit and change the core. However I don't recommend it, because after upgrading you \nhave to insert your change again. So be careful.\nGo to wp-includes\/general-template.php and find the lines (around lineno 2294):<\/p>\n\n<pre><code>$title = sprintf( $args['tagtitle'], get_bloginfo('name'), $args['separator'], $term-&gt;name );\n$href = get_tag_feed_link( $term-&gt;term_id );\n<\/code><\/pre>\n\n<p>replace it with:<\/p>\n\n<pre><code>if ( function_exists('multi_tags_get_title') )\n    $title = sprintf( $args['tagtitle'], get_bloginfo('name'), $args['separator'], multi_tags_get_title() );\nelse\n    $title = sprintf( $args['tagtitle'], get_bloginfo('name'), $args['separator'], $term-&gt;name );\nif ( function_exists('multi_tags_get_tag_feed_link') )\n    $href = multi_tags_get_tag_feed_link( $term-&gt;term_id );\nelse\n    $href = get_tag_feed_link( $term-&gt;term_id );\n<\/code><\/pre><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>0.6<\/h4>\n\n<p>Adapted to wordpress &gt;= 4\nCorrected feed-url-code in readme.txt<\/p>\n\n<h4>0.5<\/h4>\n\n<ul>\n<li>fixed dump slipped in letter, that lead to syntax-error<\/li>\n<li>I'm really sorry.<\/li>\n<\/ul>\n\n<h4>0.4<\/h4>\n\n<ul>\n<li>fixed typo in readme.txt<\/li>\n<li>now testet with 3.2.1<\/li>\n<li>MultiTags ist broken in WP 3.1.1 due to a bug in WP http:\/\/core.trac.wordpress.org\/ticket\/17054<\/li>\n<\/ul>\n\n<h4>0.3<\/h4>\n\n<ul>\n<li>added function multi_tags_get_tag_feed_link to support correct feeds<\/li>\n<\/ul>\n\n<h4>0.2<\/h4>\n\n<ul>\n<li>corrected fatal-error on activation<\/li>\n<li>several clean-ups <\/li>\n<li>corrected versioning - sorry, my first plugin :-\/<\/li>\n<\/ul>\n\n<h4>0.1<\/h4>\n\n<p>initial version<\/p>","raw_excerpt":"Display correct tags when calling a tag-page with more than one tag.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pap-aw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/10521","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pap-aw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/pap-aw.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/pap-aw.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=10521"}],"author":[{"embeddable":true,"href":"https:\/\/pap-aw.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/svogel"}],"wp:attachment":[{"href":"https:\/\/pap-aw.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=10521"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/pap-aw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=10521"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/pap-aw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=10521"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/pap-aw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=10521"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/pap-aw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=10521"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/pap-aw.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=10521"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}