Version Description
Download this release
Release Info
Developer | dancameron |
Plugin | Search Everything |
Version | 4.6.2 |
Comparing to | |
See all releases |
Code changes from version 4.6 to 4.6.2
- SE-Admin.php +13 -9
- lang/SE4-it_IT.mo +0 -0
- lang/SE4-it_IT.po +113 -0
- lang/SE4-ru_RU.mo +0 -0
- lang/SE4-ru_RU.po +109 -0
- readme.txt +4 -2
- search_everything.php +1 -1
SE-Admin.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
Class SearchEverythingAdmin {
|
4 |
|
5 |
-
var $version = '4.6';
|
6 |
|
7 |
function SearchEverythingAdmin() {
|
8 |
|
@@ -86,34 +86,36 @@ Class SearchEverythingAdmin {
|
|
86 |
// Show tags only for WP 2.3+
|
87 |
If ($wp_version >= '2.3') { ?>
|
88 |
<p><input type="checkbox" id="search_tags" name="search_tags" value="true" <?php if($options['SE4_use_tag_search'] == 'true') { echo 'checked="true"'; } ?> />
|
89 |
-
<label for="search_tags"><?php _e('Search every tag','SearchEverything'); ?></label></p>
|
90 |
<?php } ?>
|
91 |
|
92 |
<?php
|
93 |
// Show categories only for WP 2.5+
|
94 |
If ($wp_version >= '2.5') { ?>
|
95 |
<p><input type="checkbox" id="search_categories" name="search_categories" value="true" <?php if($options['SE4_use_category_search'] == 'true') { echo 'checked="true"'; } ?> />
|
96 |
-
<label for="search_categories"><?php _e('Search every category','SearchEverything'); ?></label></p>
|
97 |
<?php } ?>
|
98 |
|
99 |
<p><input type="checkbox" id="search_comments" name="search_comments" value="true" <?php if($options['SE4_use_comment_search'] == 'true') { echo 'checked="true"'; } ?> />
|
100 |
<label for="search_comments"><?php _e('Search every comment','SearchEverything'); ?></label></p>
|
101 |
|
102 |
-
<p> <input type="checkbox" class="SE_text_input" id="appvd_comments" name="appvd_comments" value="true" <?php if($options['SE4_approved_comments_only'] == 'true') { echo 'checked="true"'; } ?>
|
103 |
<label for="appvd_comments"><?php _e('Search approved comments only?','SearchEverything'); ?></label></p>
|
104 |
|
105 |
<p><input type="checkbox" id="search_excerpt" name="search_excerpt" value="true" <?php if($options['SE4_use_excerpt_search'] == 'true') { echo 'checked="true"'; } ?> />
|
106 |
<label for="search_excerpt"><?php _e('Search every excerpt','SearchEverything'); ?></label></p>
|
107 |
-
|
108 |
-
|
|
|
|
|
109 |
<label for="search_drafts"><?php _e('Search every draft','SearchEverything'); ?></label></p>
|
110 |
-
|
111 |
<p><input type="checkbox" id="search_attachments" name="search_attachments" value="true" <?php if($options['SE4_use_attachment_search'] == 'true') { echo 'checked="true"'; } ?> />
|
112 |
<label for="search_attachments"><?php _e('Search every attachment','SearchEverything'); ?></label></p>
|
113 |
|
114 |
<p><input type="checkbox" id="search_metadata" name="search_metadata" value="true" <?php if($options['SE4_use_metadata_search'] == 'true') { echo 'checked="true"'; } ?> />
|
115 |
<label for="search_metadata"><?php _e('Search every custom field (metadata)','SearchEverything'); ?></label></p>
|
116 |
-
|
117 |
</td>
|
118 |
</tr>
|
119 |
</table>
|
@@ -121,6 +123,7 @@ Class SearchEverythingAdmin {
|
|
121 |
<input type="hidden" name="action" value="save" />
|
122 |
<input type="submit" value="<?php _e('Update Options', 'SearchEverything') ?>" />
|
123 |
</div>
|
|
|
124 |
</div>
|
125 |
|
126 |
<div class="wrap">
|
@@ -147,7 +150,7 @@ Class SearchEverythingAdmin {
|
|
147 |
<table class="form-table">
|
148 |
<tr valign="top">
|
149 |
<td colspan="4" bgcolor="#DDD">
|
150 |
-
As of 2.5 I'm taking a hiatus from SE development; however I'm still
|
151 |
You should not fret, the development since Version One has primarily come from the WordPress community and as a Search Everything user myself, I’m grateful for their dedicated and continued support:
|
152 |
<ul class="SE_lists">
|
153 |
<li><a href="http://chrismeller.com/">Chris Meller</a></li>
|
@@ -169,6 +172,7 @@ Class SearchEverythingAdmin {
|
|
169 |
<td bgcolor="#DDD">
|
170 |
If you’d like to contribute there’s a lot to do:
|
171 |
<ul class="SE_lists">
|
|
|
172 |
<li>More meta data functions.</li>
|
173 |
<li>Search Bookmarks.</li>
|
174 |
<li>…anything else you want to add.</li>
|
2 |
|
3 |
Class SearchEverythingAdmin {
|
4 |
|
5 |
+
var $version = '4.6.2';
|
6 |
|
7 |
function SearchEverythingAdmin() {
|
8 |
|
86 |
// Show tags only for WP 2.3+
|
87 |
If ($wp_version >= '2.3') { ?>
|
88 |
<p><input type="checkbox" id="search_tags" name="search_tags" value="true" <?php if($options['SE4_use_tag_search'] == 'true') { echo 'checked="true"'; } ?> />
|
89 |
+
<label for="search_tags"><?php _e('Search every tag name','SearchEverything'); ?></label></p>
|
90 |
<?php } ?>
|
91 |
|
92 |
<?php
|
93 |
// Show categories only for WP 2.5+
|
94 |
If ($wp_version >= '2.5') { ?>
|
95 |
<p><input type="checkbox" id="search_categories" name="search_categories" value="true" <?php if($options['SE4_use_category_search'] == 'true') { echo 'checked="true"'; } ?> />
|
96 |
+
<label for="search_categories"><?php _e('Search every category name','SearchEverything'); ?></label></p>
|
97 |
<?php } ?>
|
98 |
|
99 |
<p><input type="checkbox" id="search_comments" name="search_comments" value="true" <?php if($options['SE4_use_comment_search'] == 'true') { echo 'checked="true"'; } ?> />
|
100 |
<label for="search_comments"><?php _e('Search every comment','SearchEverything'); ?></label></p>
|
101 |
|
102 |
+
<p> <input type="checkbox" class="SE_text_input" id="appvd_comments" name="appvd_comments" value="true" <?php if($options['SE4_approved_comments_only'] == 'true') { echo 'checked="true"'; } ?> />
|
103 |
<label for="appvd_comments"><?php _e('Search approved comments only?','SearchEverything'); ?></label></p>
|
104 |
|
105 |
<p><input type="checkbox" id="search_excerpt" name="search_excerpt" value="true" <?php if($options['SE4_use_excerpt_search'] == 'true') { echo 'checked="true"'; } ?> />
|
106 |
<label for="search_excerpt"><?php _e('Search every excerpt','SearchEverything'); ?></label></p>
|
107 |
+
<?php
|
108 |
+
// Show drafts only for WP 2.3+
|
109 |
+
If ($wp_version < '2.5') { ?>
|
110 |
+
<p><input type="checkbox" id="search_drafts" name="search_drafts" value="true" <?php if($options['SE4_use_draft_search'] == 'true') { echo 'checked="true"'; } ?> />
|
111 |
<label for="search_drafts"><?php _e('Search every draft','SearchEverything'); ?></label></p>
|
112 |
+
<?php } ?>
|
113 |
<p><input type="checkbox" id="search_attachments" name="search_attachments" value="true" <?php if($options['SE4_use_attachment_search'] == 'true') { echo 'checked="true"'; } ?> />
|
114 |
<label for="search_attachments"><?php _e('Search every attachment','SearchEverything'); ?></label></p>
|
115 |
|
116 |
<p><input type="checkbox" id="search_metadata" name="search_metadata" value="true" <?php if($options['SE4_use_metadata_search'] == 'true') { echo 'checked="true"'; } ?> />
|
117 |
<label for="search_metadata"><?php _e('Search every custom field (metadata)','SearchEverything'); ?></label></p>
|
118 |
+
|
119 |
</td>
|
120 |
</tr>
|
121 |
</table>
|
123 |
<input type="hidden" name="action" value="save" />
|
124 |
<input type="submit" value="<?php _e('Update Options', 'SearchEverything') ?>" />
|
125 |
</div>
|
126 |
+
</form>
|
127 |
</div>
|
128 |
|
129 |
<div class="wrap">
|
150 |
<table class="form-table">
|
151 |
<tr valign="top">
|
152 |
<td colspan="4" bgcolor="#DDD">
|
153 |
+
As of 2.5 I'm taking a hiatus from SE development; however I'm still committing feature updates and bug fixes from the community.<br/>
|
154 |
You should not fret, the development since Version One has primarily come from the WordPress community and as a Search Everything user myself, I’m grateful for their dedicated and continued support:
|
155 |
<ul class="SE_lists">
|
156 |
<li><a href="http://chrismeller.com/">Chris Meller</a></li>
|
172 |
<td bgcolor="#DDD">
|
173 |
If you’d like to contribute there’s a lot to do:
|
174 |
<ul class="SE_lists">
|
175 |
+
<strong><li>Search Options for Visitor.</li></strong>
|
176 |
<li>More meta data functions.</li>
|
177 |
<li>Search Bookmarks.</li>
|
178 |
<li>…anything else you want to add.</li>
|
lang/SE4-it_IT.mo
ADDED
Binary file
|
lang/SE4-it_IT.po
ADDED
@@ -0,0 +1,113 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Search Everything in italiano\n"
|
4 |
+
"POT-Creation-Date: \n"
|
5 |
+
"PO-Revision-Date: 2008-06-22 11:53+0100\n"
|
6 |
+
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.com>\n"
|
7 |
+
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
12 |
+
"X-Poedit-Basepath: C:\\Dokumente und Einstellungen\\AlohaStone\\Eigene Dateien\\Eigene Websites\\ver 2.3\\wordpress\\wp-content\\plugins\\\n"
|
13 |
+
"X-Poedit-Language: Italian\n"
|
14 |
+
"X-Poedit-Country: ITALY\n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-SearchPath-0: search-everything\n"
|
17 |
+
|
18 |
+
#: search-everything/SE-Admin.php:29
|
19 |
+
msgid "Search Everything Options <strong>Updated</strong>."
|
20 |
+
msgstr "Le opzioni di Search Everything sono state <strong>aggiornate</strong>."
|
21 |
+
|
22 |
+
#: search-everything/SE-Admin.php:59
|
23 |
+
msgid "The options selected below will be used in every search query on this site; in addition to the built-in post search."
|
24 |
+
msgstr "Le opzioni selezionate verranno utilizzate per ogni interrogazione di ricerca (in aggiunta a quella di base) agli articoli di questo sito."
|
25 |
+
|
26 |
+
#: search-everything/SE-Admin.php:63
|
27 |
+
msgid "SE Search Options"
|
28 |
+
msgstr "Opzioni di ricerca SE"
|
29 |
+
|
30 |
+
#: search-everything/SE-Admin.php:64
|
31 |
+
msgid "Use this form to configure your search options."
|
32 |
+
msgstr "Utilizza questo modulo per configurare le tue opzioni di ricerca."
|
33 |
+
|
34 |
+
#: search-everything/SE-Admin.php:67
|
35 |
+
msgid "Search Options Form"
|
36 |
+
msgstr "Modulo delle opzioni di ricerca"
|
37 |
+
|
38 |
+
#: search-everything/SE-Admin.php:69
|
39 |
+
msgid "Exclude some post or page IDs"
|
40 |
+
msgstr "Escludi l'ID di alcune pagine o articoli"
|
41 |
+
|
42 |
+
#: search-everything/SE-Admin.php:70
|
43 |
+
msgid "Comma separated Post IDs (example: 1, 5, 9)"
|
44 |
+
msgstr "Separa l'ID dei post con una virgola (ad esempio: 1, 5, 9)"
|
45 |
+
|
46 |
+
#: search-everything/SE-Admin.php:75
|
47 |
+
msgid "Exclude Categories"
|
48 |
+
msgstr "Escludi le categorie"
|
49 |
+
|
50 |
+
#: search-everything/SE-Admin.php:76
|
51 |
+
msgid "Comma separated category IDs (example: 1, 4)"
|
52 |
+
msgstr "Separa l'ID delle categorie con una virgola (ad esempio: 1, 5, 9)"
|
53 |
+
|
54 |
+
#: search-everything/SE-Admin.php:81
|
55 |
+
msgid "Search every page (non-password protected)"
|
56 |
+
msgstr "Ricerca estesa ad ogni pagina (non protetta da password)"
|
57 |
+
|
58 |
+
#: search-everything/SE-Admin.php:83
|
59 |
+
msgid "Search approved pages only?"
|
60 |
+
msgstr "Vuoi che la ricerca sia ristretta solamente alle pagine? "
|
61 |
+
|
62 |
+
#: search-everything/SE-Admin.php:89
|
63 |
+
msgid "Search every tag"
|
64 |
+
msgstr "Ricerca estesa ad ogni tag"
|
65 |
+
|
66 |
+
#: search-everything/SE-Admin.php:94
|
67 |
+
msgid "Search every comment"
|
68 |
+
msgstr "Ricerca estesa ad ogni commento"
|
69 |
+
|
70 |
+
#: search-everything/SE-Admin.php:97
|
71 |
+
msgid "Search approved comments only?"
|
72 |
+
msgstr "Vuoi che la ricerca sia ristretta solamente ai commenti?"
|
73 |
+
|
74 |
+
#: search-everything/SE-Admin.php:100
|
75 |
+
msgid "Search every excerpt"
|
76 |
+
msgstr "Ricerca estesa ad ogni estratto"
|
77 |
+
|
78 |
+
#: search-everything/SE-Admin.php:103
|
79 |
+
msgid "Search every draft"
|
80 |
+
msgstr "Ricerca estesa ad ogni bozza"
|
81 |
+
|
82 |
+
#: search-everything/SE-Admin.php:106
|
83 |
+
msgid "Search every attachment"
|
84 |
+
msgstr "Ricerca estesa ad ogni allegato"
|
85 |
+
|
86 |
+
#: search-everything/SE-Admin.php:109
|
87 |
+
msgid "Search every custom field (metadata)"
|
88 |
+
msgstr "Ricerca per ogni campo personalizzato (metadata)"
|
89 |
+
|
90 |
+
#: search-everything/SE-Admin.php:115
|
91 |
+
msgid "Update Options"
|
92 |
+
msgstr "Aggiona le opzioni"
|
93 |
+
|
94 |
+
#: search-everything/SE-Admin.php:121
|
95 |
+
msgid "SE Search Form"
|
96 |
+
msgstr "Modulo di ricerca SE"
|
97 |
+
|
98 |
+
#: search-everything/SE-Admin.php:122
|
99 |
+
msgid "Use this search form to run a live search test."
|
100 |
+
msgstr "Usa questo modulo di ricerca per avviare un test live di ricerca."
|
101 |
+
|
102 |
+
#: search-everything/SE-Admin.php:125
|
103 |
+
msgid "Site Search"
|
104 |
+
msgstr "Ricerca nel sito"
|
105 |
+
|
106 |
+
#: search-everything/SE-Admin.php:127
|
107 |
+
msgid "Enter search terms"
|
108 |
+
msgstr "Inserisci i termini di ricerca"
|
109 |
+
|
110 |
+
#: search-everything/SE-Admin.php:129
|
111 |
+
msgid "Run Test Search"
|
112 |
+
msgstr "Avvia il test di ricerca"
|
113 |
+
|
lang/SE4-ru_RU.mo
ADDED
Binary file
|
lang/SE4-ru_RU.po
ADDED
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Search Everything\n"
|
4 |
+
"POT-Creation-Date: \n"
|
5 |
+
"PO-Revision-Date: 2007-11-15 20:36+0100\n"
|
6 |
+
"Last-Translator: Silver Ghost <silver@silverghost.org.ua>\n"
|
7 |
+
"Language-Team: RUSSIAN\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
|
12 |
+
#: search-everything/SE-Admin.php:29
|
13 |
+
msgid "Search Everything Options <strong>Updated</strong>."
|
14 |
+
msgstr "Настройки Search Everything <strong>обновлены</strong>"
|
15 |
+
|
16 |
+
#: search-everything/SE-Admin.php:59
|
17 |
+
msgid "The options selected below will be used in every search query on this site; in addition to the built-in post search."
|
18 |
+
msgstr "Настройки, выбранные ниже, будут применены к каждому поисковому запросу на этом сайте. В противном случае, будет использован встроенный поиск."
|
19 |
+
|
20 |
+
#: search-everything/SE-Admin.php:63
|
21 |
+
msgid "SE Search Options"
|
22 |
+
msgstr "SE настройки поиска"
|
23 |
+
|
24 |
+
#: search-everything/SE-Admin.php:64
|
25 |
+
msgid "Use this form to configure your search options."
|
26 |
+
msgstr "Используйте эту форму для настройки параметров поиска."
|
27 |
+
|
28 |
+
#: search-everything/SE-Admin.php:67
|
29 |
+
msgid "Search Options Form"
|
30 |
+
msgstr "Форма настройки поиска"
|
31 |
+
|
32 |
+
#: search-everything/SE-Admin.php:69
|
33 |
+
msgid "Exclude some post or page IDs"
|
34 |
+
msgstr "Исключить некоторые записи или ID страниц"
|
35 |
+
|
36 |
+
#: search-everything/SE-Admin.php:70
|
37 |
+
msgid "Comma separated Post IDs (example: 1, 5, 9)"
|
38 |
+
msgstr "ID записей, разделенные запятой (пример: 1, 5, 9)"
|
39 |
+
|
40 |
+
#: search-everything/SE-Admin.php:75
|
41 |
+
msgid "Exclude Categories"
|
42 |
+
msgstr "Исключить категории"
|
43 |
+
|
44 |
+
#: search-everything/SE-Admin.php:76
|
45 |
+
msgid "Comma separated category IDs (example: 1, 4)"
|
46 |
+
msgstr "ID категорий, разделенные запятой (пример: 1, 4)"
|
47 |
+
|
48 |
+
#: search-everything/SE-Admin.php:81
|
49 |
+
msgid "Search every page (non-password protected)"
|
50 |
+
msgstr "Искать на каждой странице (не защищенной паролем)"
|
51 |
+
|
52 |
+
#: search-everything/SE-Admin.php:83
|
53 |
+
msgid "Search approved pages only?"
|
54 |
+
msgstr "Искать только на опубликованных страницах"
|
55 |
+
|
56 |
+
#: search-everything/SE-Admin.php:89
|
57 |
+
msgid "Search every tag"
|
58 |
+
msgstr "Искать каждый тэг"
|
59 |
+
|
60 |
+
#: search-everything/SE-Admin.php:94
|
61 |
+
msgid "Search every comment"
|
62 |
+
msgstr "Искать каждый комментарий"
|
63 |
+
|
64 |
+
#: search-everything/SE-Admin.php:97
|
65 |
+
msgid "Search approved comments only?"
|
66 |
+
msgstr "Искать только в опубликованных комментариях"
|
67 |
+
|
68 |
+
#: search-everything/SE-Admin.php:100
|
69 |
+
msgid "Search every excerpt"
|
70 |
+
msgstr "Искать каждую выдержку"
|
71 |
+
|
72 |
+
#: search-everything/SE-Admin.php:103
|
73 |
+
msgid "Search every draft"
|
74 |
+
msgstr "Искать каждый черновик"
|
75 |
+
|
76 |
+
#: search-everything/SE-Admin.php:106
|
77 |
+
msgid "Search every attachment"
|
78 |
+
msgstr "Искать каждый прикрепленный файл"
|
79 |
+
|
80 |
+
#: search-everything/SE-Admin.php:109
|
81 |
+
msgid "Search every custom field (metadata)"
|
82 |
+
msgstr "Искать каждое свое поле (метаданные)"
|
83 |
+
|
84 |
+
#: search-everything/SE-Admin.php:115
|
85 |
+
msgid "Update Options"
|
86 |
+
msgstr "Обновить настройки"
|
87 |
+
|
88 |
+
#: search-everything/SE-Admin.php:121
|
89 |
+
msgid "SE Search Form"
|
90 |
+
msgstr "SE форма поиска"
|
91 |
+
|
92 |
+
#: search-everything/SE-Admin.php:122
|
93 |
+
msgid "Use this search form to run a live search test."
|
94 |
+
msgstr "Используйте эту форму для тестирования поиска."
|
95 |
+
|
96 |
+
#: search-everything/SE-Admin.php:125
|
97 |
+
msgid "Site Search"
|
98 |
+
msgstr "Поиск по сайту"
|
99 |
+
|
100 |
+
#: search-everything/SE-Admin.php:127
|
101 |
+
msgid "Enter search terms"
|
102 |
+
msgstr "Введите, что будем искать"
|
103 |
+
|
104 |
+
#: search-everything/SE-Admin.php:129
|
105 |
+
msgid "Run Test Search"
|
106 |
+
msgstr "Искать"
|
107 |
+
|
108 |
+
msgid "Search every category"
|
109 |
+
msgstr "Искать в каждой категории"
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: dancameron
|
|
3 |
Donate link: http://www.amazon.com/gp/registry/wishlist/3EM84J7FVHE6S/ref=wl_web/
|
4 |
Tags: search, tag search, category search, category exclusion, comment search, page search, admin, seo
|
5 |
Requires at least: 2.1
|
6 |
-
Tested up to: 2.5
|
7 |
-
Stable tag: 4.
|
8 |
|
9 |
Increases Wordpress' default search functionality through an options panel. Options include searching pages, excerpts, attachments, drafts, comments and custom fields (metadata).
|
10 |
|
@@ -30,6 +30,8 @@ Search Everything increases the ability of the default Wordpress Search, options
|
|
30 |
|
31 |
== Update Log ==
|
32 |
|
|
|
|
|
33 |
*4.5 - Japanese Language Support, Category Fix for Wordpress 2.5, Tag search fix (name) other minors
|
34 |
* 4.2.2 - Localization PO and MO updates, German Translation
|
35 |
* 4.2 - Full 2.3 Support with Tag Searching and Category Exclusion. Major Performance tweaks for searching tags and comments (4.2.1).
|
3 |
Donate link: http://www.amazon.com/gp/registry/wishlist/3EM84J7FVHE6S/ref=wl_web/
|
4 |
Tags: search, tag search, category search, category exclusion, comment search, page search, admin, seo
|
5 |
Requires at least: 2.1
|
6 |
+
Tested up to: 2.5.1
|
7 |
+
Stable tag: 4.6.2
|
8 |
|
9 |
Increases Wordpress' default search functionality through an options panel. Options include searching pages, excerpts, attachments, drafts, comments and custom fields (metadata).
|
10 |
|
30 |
|
31 |
== Update Log ==
|
32 |
|
33 |
+
*4.6.2 - REQUIRED UPDATE from 4.6 release. Admin panel bug fixes (proper wp_version checks, disabled draft support for 2.5 and fixed the options from not updating); Russian and Italian language suuport.
|
34 |
+
*4.6 - Admin refresh and Excerpt Fix
|
35 |
*4.5 - Japanese Language Support, Category Fix for Wordpress 2.5, Tag search fix (name) other minors
|
36 |
* 4.2.2 - Localization PO and MO updates, German Translation
|
37 |
* 4.2 - Full 2.3 Support with Tag Searching and Category Exclusion. Major Performance tweaks for searching tags and comments (4.2.1).
|
search_everything.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Search Everything
|
4 |
Plugin URI: http://dancameron.org/wordpress/
|
5 |
Description: Adds search functionality with little setup. Including options to search pages, excerpts, attachments, drafts, comments, tags and custom fields (metadata). Also offers the ability to exclude specific pages and posts. Does not search password-protected content.
|
6 |
-
Version: 4.6
|
7 |
Author: Dan Cameron
|
8 |
Author URI: http://dancameron.org/
|
9 |
*/
|
3 |
Plugin Name: Search Everything
|
4 |
Plugin URI: http://dancameron.org/wordpress/
|
5 |
Description: Adds search functionality with little setup. Including options to search pages, excerpts, attachments, drafts, comments, tags and custom fields (metadata). Also offers the ability to exclude specific pages and posts. Does not search password-protected content.
|
6 |
+
Version: 4.6.2
|
7 |
Author: Dan Cameron
|
8 |
Author URI: http://dancameron.org/
|
9 |
*/
|