বৰ্ণনা
Add “related” tags list(link list, plain text list, or my favourite cloud-style list) on the tag page, based on posts that have this tag.
When you open tag page i.e example.com/tag/facebook, plugin checking posts that marked with tag “Facebook”, check the other tags in these posts, and put the related tag list back.
Sometimes related tags more useful for users and for SEO purposes.
স্ক্ৰীনশ্বট
ইনষ্টলেশ্যন
- Upload to the
/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Place in your tag template
(usually it’s archive.php)
-
If you need cloud-style links to related tags:
-
If you need plain text list of related tags:
-
If you need link list of related tags:
Also you can use widget in your sidebar (but keep in mind it shows on only on the tag page).
you can customize view with $args – is the same with wp_tag_cloud
and here is defaults:
<?php $args = array(
'smallest' => 8,
'largest' => 22,
'unit' => 'pt',
'number' => 45,
'format' => 'flat',
'separator' => "\n",
'orderby' => 'name',
'order' => 'ASC',
'exclude' => null,
'include' => null,
'topic_count_text_callback' => default_topic_count_text,
'link' => 'view',
'taxonomy' => 'post_tag',
'echo' => true,
'child_of' => null, // see Note!
); ?>
পৰ্য্যালোচনা
এই প্লাগিনৰ বাবে কোনো পৰ্য্যালোচনা নাই।
অৱদানকাৰী আৰু বিকাশকাৰীসকল
আপোনাৰ ভাষাত “Related tags” অনুবাদ কৰক।
বিকাশৰ প্ৰতি আগ্ৰহী?
ক’ড ব্ৰাউজ কৰক, SVN ৰিপজিটৰী চাওক নাইবা RSS-দ্বাৰা বিকাশৰ পঞ্জী ছাবস্ক্ৰাইব কৰক।
সলনি-পঞ্জী
1.2
- add better readme
- add
1.1
- some fixes
1.0
- first version