Description
Replaces site search with full-text search.
Replace the site search from LIKE search to Japanese full-text search (MySQL + Ngram parser or Mroonga engine + TokenMecab parser). This will significantly improve search performance.
Search for pure strings (plain text) without HTML tags. This will prevent HTML tags from being searched.
The data (index) for searching is stored in a dedicated table. It does not rewrite existing table structures or post data (posts table).
Searches for text in PDF, Word (doc, docx), Excel, and PowerPoint files. Secured PDF file are currently not supported.
It supports WordPress multisite.
Search string options
OR
(uppercase letter) – Combine searches. Example: foo OR bar-
– Exclude words from the search. Example: foo -bar""
– Search for an exact match. Example: “foo bar”*
– Search by wildcard. Mroonga only. Example: foo*()
– Grouping. Mroonga only. Example: (foo OR bar) baz
Operating environment
Requires MySQL 5.6 or later, or Mroonga engine.
Mroonga engine is strongly recommended. InnoDB engine performs significantly worse with large amounts of data.
Installation
- Upload the
full-text-search
folder to the/wp-content/plugins/
directory. - Activate the plugin through the Plugins menu in WordPress.
Reviews
Contributors & Developers
“Full-Text Search” is open source software. The following people have contributed to this plugin.
Contributors“Full-Text Search” has been translated into 2 locales. Thank you to the translators for their contributions.
Translate “Full-Text Search” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
2.13.0
- Supported WordPress version 6.4.
- Updated WordPress version requirements to 5.5.
2.12.4
- Fixed a bug in highlighting search keywords.
- Changed the name of “Reusable Block” to “Synced Pattern”.
2.12.3
- Fixed a bug that characters on the management screen were sometimes garbled.
2.12.2
- Updated PDF Parser library to 2.7.0.
2.12.1
- Replaced composer autoloader with Jetpack autoloader.
2.12.0
- Updated PDF Parser library to 2.4.0.
- Code refactoring to meet WordPress PHP Coding Standards.
2.11.0
- Changed not to use mark.js.
- Code refactoring.
2.10.2
- Changed to remove control characters in text extracted from PDF.
- Adjusted the target tags for highlighting search keywords.
2.10.0
- Added option to search the contents of shortcodes.
- Added option to search the contents of reusable blocks.
- Added option to search HTML tags.
- Updated PDF Parser library to 2.3.0.
2.9.4
- Updated PDF Parser library to 2.2.2.
- Added full_text_search_pdf_text filter.
2.9.3
- Changed default setting values.
- Added escaping to multiple translate texts for enhanced security.
2.9.2
- Changed full-text search to exclude_from_search posts only.
- Fixed a bug that the text of attachments were not extracted when regenerating indexes.
2.9.0
- Added the ability to highlight search keywords on the search results page.
- Optimized SQL.
2.8.1
- Added a function to delete the search text of attachments.
2.8.0
- Improved performance.
- Changed to remove control characters such as spaces and line breaks from automatically extracted text in PDF.
1.0.0
- Initial release.