├── .distignore ├── .editorconfig ├── .github └── workflows │ ├── coding-standards.yml │ └── unit-tests.yml ├── .gitignore ├── .phpcs.xml ├── .phpcs └── .gitkeep ├── Gruntfile.js ├── README.md ├── README.txt ├── assets ├── admin.css └── admin.js ├── bin └── wp-cli.php ├── composer.json ├── composer.lock ├── lib ├── class-sp-admin.php ├── class-sp-api.php ├── class-sp-compat.php ├── class-sp-config.php ├── class-sp-cron.php ├── class-sp-debug.php ├── class-sp-heartbeat.php ├── class-sp-indexable.php ├── class-sp-integration.php ├── class-sp-post.php ├── class-sp-search-suggest.php ├── class-sp-search.php ├── class-sp-singleton.php ├── class-sp-sync-manager.php ├── class-sp-sync-meta.php ├── class-sp-wp-search.php ├── functions.php └── globals.php ├── multisite.xml ├── package.json ├── phpunit.xml.dist ├── searchpress.php └── tests ├── bootstrap.php ├── class-searchpress-unit-test-case.php ├── test-admin.php ├── test-api.php ├── test-faceting.php ├── test-functions.php ├── test-general.php ├── test-heartbeat.php ├── test-indexing.php ├── test-integration.php ├── test-mapping-postmeta.php ├── test-mapping.php ├── test-post.php ├── test-search-suggest.php ├── test-searching.php └── test-sync-meta.php /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/coding-standards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/.github/workflows/coding-standards.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/.gitignore -------------------------------------------------------------------------------- /.phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/.phpcs.xml -------------------------------------------------------------------------------- /.phpcs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/README.txt -------------------------------------------------------------------------------- /assets/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/assets/admin.css -------------------------------------------------------------------------------- /assets/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/assets/admin.js -------------------------------------------------------------------------------- /bin/wp-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/bin/wp-cli.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/composer.lock -------------------------------------------------------------------------------- /lib/class-sp-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-admin.php -------------------------------------------------------------------------------- /lib/class-sp-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-api.php -------------------------------------------------------------------------------- /lib/class-sp-compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-compat.php -------------------------------------------------------------------------------- /lib/class-sp-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-config.php -------------------------------------------------------------------------------- /lib/class-sp-cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-cron.php -------------------------------------------------------------------------------- /lib/class-sp-debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-debug.php -------------------------------------------------------------------------------- /lib/class-sp-heartbeat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-heartbeat.php -------------------------------------------------------------------------------- /lib/class-sp-indexable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-indexable.php -------------------------------------------------------------------------------- /lib/class-sp-integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-integration.php -------------------------------------------------------------------------------- /lib/class-sp-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-post.php -------------------------------------------------------------------------------- /lib/class-sp-search-suggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-search-suggest.php -------------------------------------------------------------------------------- /lib/class-sp-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-search.php -------------------------------------------------------------------------------- /lib/class-sp-singleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-singleton.php -------------------------------------------------------------------------------- /lib/class-sp-sync-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-sync-manager.php -------------------------------------------------------------------------------- /lib/class-sp-sync-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-sync-meta.php -------------------------------------------------------------------------------- /lib/class-sp-wp-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/class-sp-wp-search.php -------------------------------------------------------------------------------- /lib/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/functions.php -------------------------------------------------------------------------------- /lib/globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/lib/globals.php -------------------------------------------------------------------------------- /multisite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/multisite.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /searchpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/searchpress.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/class-searchpress-unit-test-case.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/class-searchpress-unit-test-case.php -------------------------------------------------------------------------------- /tests/test-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-admin.php -------------------------------------------------------------------------------- /tests/test-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-api.php -------------------------------------------------------------------------------- /tests/test-faceting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-faceting.php -------------------------------------------------------------------------------- /tests/test-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-functions.php -------------------------------------------------------------------------------- /tests/test-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-general.php -------------------------------------------------------------------------------- /tests/test-heartbeat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-heartbeat.php -------------------------------------------------------------------------------- /tests/test-indexing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-indexing.php -------------------------------------------------------------------------------- /tests/test-integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-integration.php -------------------------------------------------------------------------------- /tests/test-mapping-postmeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-mapping-postmeta.php -------------------------------------------------------------------------------- /tests/test-mapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-mapping.php -------------------------------------------------------------------------------- /tests/test-post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-post.php -------------------------------------------------------------------------------- /tests/test-search-suggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-search-suggest.php -------------------------------------------------------------------------------- /tests/test-searching.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-searching.php -------------------------------------------------------------------------------- /tests/test-sync-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alleyinteractive/searchpress/HEAD/tests/test-sync-meta.php --------------------------------------------------------------------------------