PluginProbe
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms / 3.6.2
Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms v3.6.2
3.53.0 3.52.0 3.51.0 3.50.0 3.45.0 3.38.0 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.40.0 3.40.1 3.41.0 3.42.0 3.43.0 3.44.0 3.5.0 3.5.1 3.5.2 3.5.3 3.6.0 3.6.1 3.6.2 All 177 releases
simple-tags / inc / helper.options.default.php

helper.options.default.php in Tag, Category, and Taxonomy Manager – Autotagger Automatically Add Terms 3.6.2, at inc/helper.options.default.php

68 lines 2.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 return array(
3 // Features
4 'active_taxonomies' => 1,
5 'active_terms_display' => 1,
6 'active_post_tags' => 1,
7 'active_related_posts_new'=> 1,
8 'active_auto_links' => 1,
9 'active_auto_terms' => 1,
10 'active_suggest_terms' => 1,
11 'active_mass_edit' => 1,
12 'active_manage' => 1,
13 'active_related_posts' => 1,
14 'active_autotags' => 1,
15 'allow_embed_tcloud' => 1,
16 // Auto link
17 'auto_link_tags' => 0,
18 'auto_link_min' => 1,
19 'auto_link_all' => 1,
20 'auto_link_case' => 1,
21 'auto_link_exclude' => '',
22 'auto_link_max_by_post' => 10,
23 'auto_link_max_by_tag' => 1,
24 'auto_link_priority' => 12,
25 'auto_link_views' => 'singular',
26 'auto_link_dom' => 0,
27 'auto_link_title' => __('Posts tagged with %s', 'simple-tags'),
28 'auto_link_title_excl' => 0,
29 // The tags
30 'tt_feed' => 0,
31 'tt_embedded' => 'no',
32 'tt_separator' => ', ',
33 'tt_before' => __('Tags: ', 'simple-tags'),
34 'tt_after' => '<br />',
35 'tt_notagstext' => __('No tags for this post.', 'simple-tags'),
36 'tt_number' => 0,
37 'tt_inc_cats' => 0,
38 'tt_xformat' => __('<a href="%tag_link%" title="%tag_name%" %tag_rel%>%tag_name%</a>', 'simple-tags'),
39 'tt_adv_usage' => '',
40 // Related Posts
41 'rp_taxonomy' => 'post_tag',
42 'rp_feed' => 0,
43 'rp_embedded' => 'no',
44 'rp_order' => 'count-desc',
45 'rp_limit_qty' => 5,
46 'rp_notagstext' => __('No related posts.', 'simple-tags'),
47 'rp_title' => __('<h4>Related posts</h4>', 'simple-tags'),
48 'rp_xformat' => __('<a href="%post_permalink%" title="%post_title% (%post_date%)">%post_title%</a> (%post_comment%)', 'simple-tags'),
49 'rp_adv_usage' => '',
50 // Tag cloud
51 'cloud_taxonomy' => 'post_tag',
52 'cloud_selectionby' => 'count',
53 'cloud_selection' => 'desc',
54 'cloud_orderby' => 'random',
55 'cloud_order' => 'asc',
56 'cloud_limit_qty' => 45,
57 'cloud_notagstext' => __('No tags.', 'simple-tags'),
58 'cloud_title' => __('<h4>Tag Cloud</h4>', 'simple-tags'),
59 'cloud_format' => 'flat',
60 'cloud_xformat' => __('<a href="%tag_link%" id="tag-link-%tag_id%" class="st-tags t%tag_scale%" title="%tag_count% topics" %tag_rel% style="%tag_size% %tag_color%">%tag_name%</a>', 'simple-tags'),
61 'cloud_max_color' => '#000000',
62 'cloud_min_color' => '#CCCCCC',
63 'cloud_max_size' => 22,
64 'cloud_min_size' => 8,
65 'cloud_unit' => 'pt',
66 'cloud_adv_usage' => '',
67 );
68