Description
Search is critical for your site, but the default search for WordPress leaves a lot to be desired. Improve your user experience with the Apache Solr search engine for your WordPress website.
- Fast results, with better accuracy.
- Enables faceting on fields such as tags, categories, author, and page type.
- Indexing and faceting on custom fields.
- Drop-in support for WP_Query with the
solr_integrateparameter set to true. - Completely replaces default WordPress search, just install and configure.
- Completely integrated into default WordPress theme and search widget.
- Very developer-friendly: uses the modern Solarium library
Development
This plugin is under active development on GitHub:
https://github.com/pantheon-systems/solr-power
Please feel free to file issues there. Pull requests are also welcome! See CONTRIBUTING.md for information on contributing.
For further documentation, such as available filters and working with the SolrPower_Api class directly, please see the project wiki:
https://github.com/pantheon-systems/solr-power/wiki
You may notice there are two sets of tests running, on two different services:
- PHPUnit test suite against a Solr instance.
- The Behat test suite against a Pantheon site, to ensure the plugin’s compatibility with the Pantheon platform.
Both of these test suites can be run locally, with a varying amount of setup.
PHPUnit requires the WordPress PHPUnit test suite, and access to a database with name wordpress_test. If you haven’t already configured the test suite locally, you can run bash bin/install-wp-tests.sh wordpress_test root '' localhost. You’ll also need access to a running Solr instance, in order to run the unit tests against Solr.
Behat requires a Pantheon site with Solr enabled. Once you’ve created the site, you’ll need install Terminus, and set the TERMINUS_TOKEN, TERMINUS_SITE, and TERMINUS_ENV environment variables. Then, you can run ./bin/behat-prepare.sh to prepare the site for the test suite.
Note that dependencies are installed via Composer and the vendor directory is not committed to the repository. You will need to run composer install locally for the plugin to function. You can read more about Composer here
WP-CLI Support
This plugin has WP-CLI support.
All Solr Power related commands are grouped into the wp solr command, see an example:
$ wp solr
usage: wp solr check-server-settings
or: wp solr delete [<id>...] [--all]
or: wp solr index [--batch=<batch>] [--batch_size=<size>] [--post_type=<post-type>]
or: wp solr info [--field=<field>] [--format=<format>]
or: wp solr optimize-index
or: wp solr repost-schema
or: wp solr stats [--field=<field>] [--format=<format>]
See 'wp help solr <command>' for more information on a specific command.
You can see more details about the commands using wp help solr:
**NAME**
wp solr
**DESCRIPTION**
Perform a variety of actions against your Solr instance.
**SYNOPSIS**
wp solr <command>
**SUBCOMMANDS**
check-server-settings Check server settings.
delete Remove one or more posts from the index.
index Index all posts for a site.
info Report information about Solr Power configuration.
optimize-index Optimize the Solr index.
repost-schema Repost schema.xml to Solr.
stats Report stats about indexed content.<h3>WP_Query Integration</h3>
Use Solr in a custom WP_Query instead of querying a database. Add 'solr_integrate' => true to the query arguments.
NOTE: Currently, only basic queries, tax_query, meta_query and date_query are supported. See examples/example.custom_WP_Query.php for an example.
A meta_query can use the following compare operators:
'=''!=''>''>=''<''<=''LIKE''NOT LIKE''IN''NOT IN''BETWEEN''NOT BETWEEN''EXISTS''NOT EXISTS'
('REGEXP', 'NOT REGEXP', and 'RLIKE' are not supported.)
Configuration Tips
Searching by author name
To support searching by author name (e.g. where “Pantheon” would return posts authored by the “Pantheon” user), add the following to your custom schema.xml:
<copyField source="post_author" dest="text"/>
Boosting relevancy score by publish date
The following guidance can be used to extend the Solr index and modify boosts beyond just this example.
To support math functions on dates, you must add a custom schema.xml to Solr and reindex with the new schema.
Add the following to schema.xml:
<!-- Add to <types> -->
<!-- See: https://lucene.apache.org/solr/6_2_0/solr-core/org/apache/solr/schema/TrieDateField.html -->
<fieldType name="tdate" class="solr.TrieDateField" omitNorms="true" precisionStep="6" positionIncrementGap="0"/>
<!-- Add to <fields> -->
<field name="post_date_iso" type="tdate" indexed="true" stored="true" required="true" />
Add the following to your functions.php file.
<?php
/**
* Hooks into the document build process to add post date field in proper format.
*/
function my_solr_build_document( $doc, $post_info ) {
$post_time = strtotime( $post_info->post_date );
// Matches format required for TrieDateField
$doc->setField( 'post_date_iso', gmdate( 'c\Z', $post_time ) );
return $doc;
}
add_filter( 'solr_build_document', 'my_solr_build_document', 10, 2 );
/**
* Hooks into query processor, Dismax, to add publish date boost.
* See: https://www.metaltoad.com/blog/date-boosting-solr-drupal-search-results
*/
function my_solr_dismax_query( $dismax ) {
$dismax->setQueryParser( 'edismax' );
$dismax->setBoostQuery( 'recip(abs(ms(NOW/HOUR,post_date_iso),3.16e-11,1,1))' );
return $dismax;
}
add_filter( 'solr_dismax_query', 'my_solr_dismax_query' );
is_solr_query Filter
The is_solr_query filter controls whether Solr should be used for a specific query.
Parameters:
- $enabled (bool): Indicates whether Solr should be used for the query. Defaults to true if the query is a search or if solr_integrate is set in the query.
- $query (WP_Query): The current WordPress query object.
Return:
-
bool: true to enable Solr for the query, false to disable it.
add_filter( ‘is_solr_query’, function( $enabled, $query ) {
if ( $query->is_category( ‘news’ ) ) {
return false;
}
return $enabled;
}, 10, 2 );
Custom schema file path
By default, custom schema is sourced from wp-content/uploads/solr-for-wordpress-on-pantheon/schema.xml. This can be overridden with an absolute path using the the solr_power_customer_schema_file_path filter.
Parameters:
* $custom_schema_file_path (string): Default path to a custom schema file
Return:
* string: Absolute path to a custom schema.xml file.
add_filter('solr_power_customer_schema_file_path', function($custom_schema_file_path) {
return '/absolute/path/to/schema.xml';
});
Common issues
- Failing to post the schema.xml will result in an error during indexing, “Missing
post_date_isofield.” - If you have the field and type in the schema, but don’t add the
solr_build_documentfilter, you will get a similar error. - If the
post_date_isofield is missing from the index, Solr will ignore this boost and return regular results. - Trying to use a regular date field for the boost query will result in an error in the request instead of results.
Explicit Commit vs Autocommit
Once solr has sent the data to the solr server, solr must COMMIT the data to the index and adjust the index and relevancy ratings accordingly before that data can appear in search results.
By default, Solr Search for WordPress has auto-commit disabled. The index is committed when the uncommitted item is two minutes old, or the cron runs. By default, the cron runs on the Pantheon platform every hour.
When autocommit is enabled, Solr Search for WordPress commits data when it sends every post. When running on Pantheon, we recommend leaving autocommit disabled to aid overall site performance.
To enable autocommit, add the following to wp-config.php or an mu-plugin.
define( 'SOLRPOWER_DISABLE_AUTOCOMMIT', false );
To force-commit data outside of a normal cron run, from the command line, you can run the command below or simply force a cron-run.
wp solr commit
Installation
The Solr Power plugin can be installed just like you’d install any other WordPress plugin.
Because Solr Power is intended to be a bridge between WordPress and the Apache Solr search engine, you’ll need access to a functioning Solr 3.6 instance for the plugin to work as expected. This plugin does not support other versions of Solr. The plugin also requires PHP 7.1 or higher.
If you’re using the Solr Power plugin on Pantheon, setting up Apache Solr is as easy as enabling the Apache Solr add-on in your Pantheon dashboard. Once you’ve done so:
- Configure which post types, taxonomies and custom fields to index by going to the Indexing tab of the Solr Power settings page.
- Index your existing content by going to the plugin options screen and selecting the applicable Actions:
-
- Index Searchable Post Types
-
- Search on!
- See the examples/templates directories for more rich implementation guidelines.
If you’re using the Solr Power plugin elsewhere, you’ll need to install and configure Apache Solr. On a Linux environment, this involves four steps:
- Install the Java Runtime Environment.
- Run
./bin/install-solr.shto install and run Apache Solr on port 8983. - Configuring Solr Power to use this particular Solr instance by setting the
PANTHEON_INDEX_HOSTandPANTHEON_INDEX_PORTenvironment variables. - Copying
schema.xmlto the Solr configuration directory (a path similar tosolr/conf/schema.xml).
Alternatively, there are a couple of community-maintained Docker containers you may be able to use: kalabox/pantheon-solr, kshaner/solr.
In a local development environment, you can point Solr Power to a custom Solr instance by creating a MU plugin with:
<?php
/**
* Define Solr host IP, port, scheme and path
* Update these as necessary if your configuration differs
*/
putenv( 'PANTHEON_INDEX_HOST=192.168.50.4' );
putenv( 'PANTHEON_INDEX_PORT=8983' );
add_filter( 'solr_scheme', function(){ return 'http'; });
define( 'SOLR_PATH', '/solr/wordpress/' );
** Note for Lando users **
If you are using lando for development, the MU plugin is not needed. Lando auto configures everything for your local environment to connect to the docker index it maintains and if you overrite the ENV variables it will mess with that configuration.
FAQ
-
Where do I report security bugs found in this plugin?
-
Please report security bugs found in the source code of the Solr Power plugin through the Patchstack Vulnerability Disclosure Program. The Patchstack team will assist you with verification, CVE assignment, and notify the developers of this plugin.
Reviews
Contributors & Developers
“Solr Search for WordPress” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Solr Search for WordPress” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
2.6.0 (December 05, 2024)
- Adds
is_solr_queryfilter [#588] (props @sboisvert) - Fixes custom schema file path for Composer Managed and other non-standard uploads directories. [#637]
- Adds filter
solr_power_customer_schema_file_pathto specify an alternative custom schema.xml file. [#637]
2.5.3 (April 24, 2024)
- Fixes a very old bug that would cause tax queries to be built incorrectly. [#622] (props @offshorealert)
2.5.2 (September 12, 2023)
- Fix incompatibility with Object Cache Pro when running “wp solr index” [#611]
2.5.1
- Fix Solr not indexing automatically [#598]
- Fixed issue with empty/zero value for posts_per_page [#599] (props @threeiem)
2.5.0
- Updates CONTRIBUTING.md [#585] [#594]
- Fixes typo in var which caused undefined notice [#582]
- Update Composer dependencies [#576] [#574] [#573]
- Updates security policy [#589]
- Disable auto-commit by default. [#591]
2.4.5 (April 9, 2023)
- Fixes missing vendor/ directory in previous release [#580]
2.4.4 (April 7, 2023)
- Update Composer dependencies [#576] [#574] [#573]
- Fix failing tests [#577]
- Update tested up to version
2.4.3 (January 19, 2022)
- Include schema.xml in release distribution [#568]
2.4.2 (December 2, 2022)
- Re-add changelog heading to readme.txt [#564]
2.4.1 (December 1, 2022)
- Fixes the WordPress
readme.txt[#562]
2.4.0 (November 30, 2022)
- Adds Github Actions for building tag and deploying to wp.org. Add CONTRIBUTING.md. [#551]
- Added SOLRPOWER_DISABLE_AUTOCOMMIT to disable autocommitting of posts, moved CHANGELOG to it’s own file, added
$post->scorevalue to parsed search results [#559]
2.3.3 (September 28, 2022)
- Fixes issue where options could not be saved [#541]
- Enforces network activation requirement for WordPress multisite [#538]
2.3.2 (April 1, 2022)
- Fixes query filtering for
'fields' => 'id=>parent'[#528].
2.3.1 (March 29, 2022)
- Adapts
posts_pre_query()return values based on ‘fields’ argument [#522].
2.3.0 (March 29, 2022)
- Removes incorrect use of
array_map( 'get_post' )inposts_pre_query[#521].
2.2.6 (February 22, 2022)
- Fixes PHP 8 deprecations in
class-solrpower-options.php[#513].
2.2.5 (July 27, 2021)
- Switches to
wp_strip_all_tags()to remove style and script tag content [#500].
2.2.4 (May 5, 2021)
- Introduces
SOLRPOWER_DISABLE_QUERY_ALTconstant for disabling setQueryAlternative behavior [#495].
2.2.3 (March 8, 2021)
- Incorporates the value for
$_ENV['FILEMOUNT']when indicating path forschema.xml[#492].
2.2.2 (December 1, 2020)
- Updates various Composer dependencies [#477].
- Updates README to include detail on how to use TrieDateField for publish date [#466].
2.2.1 (July 13, 2020)
- Avoids pinging Solr unless we actually need, to avoid unnecessary requests [#458].
2.2.0 (May 5, 2020)
- Uses
posts_pre_queryhook to support use of ‘fields’ inWP_Query[#448].
2.1.4 (April 24, 2020)
- Ensures highlighting is also applied to the post excerpt [#446].
2.1.3 (November 16, 2019)
- Add
solr_power_ajax_search_query_argsfilter to modify AJAX search query arguments [#432].
2.1.2 (August 28, 2019)
- Adds
solr_is_private_blogfilter to allow control over whether a blog is indexed [#423].
2.1.1 (August 14, 2019)
- Uses some fancy
composermagic to unblock WordPress.org plugin updates [#418].
2.1.0 (May 22, 2019)
- Introduces
solr_index_statfilter for allowing additional information to be included [#396]. - Introduces
solr_facet_operatorfilter for allowing facet operator to be overridden [#388]. - Ensures warning message appears when activating across the entire network [#399].
- Parses
<h1>tags in Solr error response, in addition to<title>[#407]. - Fixes incorrect variable name when outputting schema error message [#404].
2.0.0
- Fix PHP 7 warning caused by bad conditional
- Ensure
$post->post_authorremains user ID when processing WP_Query - Add a test case asserting that
post_titleandpost_contentare not bolded - Update Solarium to
4.1.0and other dependencies updates as needed - Run automated tests against PHP
7.1 - Increase the minimum supported PHP version to
7.1
1.5.0
- Adds support for queries using
post__inandpost__not_in. - Clears batch cache when entire index is deleted.
- CLI: Errors early when there are no posts to index.
- Update Composer dependencies
1.4.1
- Introduce
batch_sizeargument forwp solr index - Ensure custom taxonomies are included in widget facets
- Mention available Docker containers in README
- Properly handle negative integers when indexing and querying
- Increase precision of
test_wp_query_failed_pingto avoid racy failures - Catch exception when
$search->getData()fails - Remove unused global imports for $current_blog
- Properly escape dismax query strings
- POST actions to
admin.phpin network admin - Define checked files in PHPCS config so
phpcscan easily be run - Remove unused global imports for $current_blog
- Define checked files in PHPCS config so
phpcscan easily be run - Rename PHPCS config to correct name
1.4.0
- Bumps minimum supported version to WordPress 4.6.
- Updates bundled Solarium library to 3.8.1.
- Fixes Solr queries using
orderby=>meta_value_num[#299]. - Use
$_SERVER['HOME']as a reliable way of finding the cert on Pantheon [#314].
1.3.0
- Add
.distignorefile for wp dist-archive solr-power - Make Solr in the admin opt-in only using the
solr_allow_adminfilter - Error early when
PANTHEON_ENVIRONMENTisn’t set - Clarify error message when environment variables aren’t set
- Mention copying
schema.xmland supported Solr version in README - Include original plugin attribution in the copyright notice
- Boost
post_titlemore thanpost_contentwith sane boost values - Add missing filter for custom fields
- Boost posts with matching titles to the top of results
- Remove duplicate options when initializing them
- Match author name in search results
- Bug fixes
- Adhere to WordPress coding standards in PHP files
1.2.0
- Add multisite support
- Respect all query vars when searching with
WP_Query - Display error from schema submit response when Solr includes one
1.1.0
- Introduce a new class for managing batch indexes
- Rewrite
wp solr indexto provide more verbosity - Make batch indexes resumeable by logging
pagedto an option - Remove old
wp solr indexcode - Fire
solr_power_index_all_finishedaction when indexing is complete - Ensure a completion message displays after indexing is complete
- Fix a bug around Solr taking over searches in wp-admin
- Properly apply the
solr_allow_adminandsolr_allow_ajaxfilters - Add
solr_boost_queryfilter for boosted items - Add
solr_dismax_queryfilter for Dismax - Add
get_post_typesandget_post_statuseshelper methods - Remove unnecessary
get_envcall - Add
solr_post_statusfilter - Add missing
solr_post_typesfilter toget_post_typescall - Use
PANTHEON_INDEX_PORTinstead of hard-coded port in curl
1.0.0
- Add Ajax functionality to the facet search widget
- Add date_query support to WP_Query Integration
- Allow
sparameter for WP_Query when Solr is enabled - Checks for searchable post type before indexing modified post
- Test with WordPress 4.7
- Add
solr_power_index_all_finishedaction when indexing all posts is complete - Allow post_title and post_content to score higher
- Make sure that integers and float values are actually of that type. Otherwise, Solr will fail to index the document.
0.6.0
- Advanced WP_Query Integration – Meta Queries, Tax Queries
- Translatable strings standardized
- Facet query fixes
- Hide schema submit option if not on the Pantheon platform
- Added a method for API status
- Document available filters
- Fixed single quote/character issues in the facet widget
0.5.0
- Add facet search widget
- Update options page internals to utilize WordPress settings API
- Add Behat tests to ensure the plugin’s compatibility with the Pantheon platform.
- Defork Solarium and update it to version 3.6.0
0.4.1
- Do not allow plugin activation if the
PANTHEON_INDEX_HOSTorPANTHEON_INDEX_PORTenvironment variables are not set. Instead, show an admin notice to the user advising them to configure the environment variables.
0.4
- Auto submission of schema.xml
- Moved legacy functions to a separate file
- PHP version check – warn in the WordPress dashboard and disable Solr Power plugin if the PHP version is less than 5.4
0.3
- Bug fixes
- Settings page updates
- Filters for AJAX/Admin integration
- Indexing all publicly queryable post types
- Debug Bar Extension
- Default sort option on settings page
- Initial WP CLI integration
0.2
- Works “out of the box” by overriding WP_Query()
- Much improved internal factoring
0.1
- Initial alpha release (GitHub only)
0.0
- Note this started as a fork of this wonderful project: https://github.com/mattweber/solr-for-wordpress
