Plugin info

Total downloads: 1,741
Active installs: 30
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 10/8/2025 (136 days ago)
Added to WordPress: 4/17/2023 (2 years old)
Minimum WordPress version: 5.0
Tested up to WordPress version: 6.8.3
Minimum PHP version: 8.0

Maintenance & Compatibility

Maintenance score

Maintained • Last updated 136 days ago

50/100

Is Index on Algolia abandoned?

Likely maintained (last update 136 days ago).

Compatibility

Requires WordPress: 5.0
Tested up to: 6.8.3
Requires PHP: 8.0

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

Allow to index posts into Algolia indices

You will access two pages :
– Settings : need to fill all informations needed for Algolia to work (Application ID, Search API Key, …)
– Indices : you can choose post types you want to index

For each indice, you can :
– Index whole posts existing (useful when enable new post type or to fix some previous missing posts)
– Backup settings in JSON file in order to sync between multiple environments
– Push settings from JSON into Algolia

These action can be done from administration or with WP CLI (see wp index-algolia command)

All post created, updated or deleted will be automatically synchronized with Algolia.

By default, plugin while index data existing in WP_Post entity.
In order to control which data you would index, you can use index_algolia_post_to_record filter which give you post object and waiting an array in return.
If you use filter, your return array SHOULD at least have objectID value.

Exemple :
$post->ID,
‘post_title’ => $post->post_title,
‘post_date’ => get_post_time( ‘U’, false, $post ),
‘link’ => get_the_permalink($post),
];

return $record;
}
?>

Installation

  1. Upload plugin folder to the “/wp-content/plugins/” directory.
  2. Activate the plugin through the “Plugins” menu in WordPress.
  3. Update url in plugin settings page

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.0

  • Initial release.

1.1

  • Handle backup & push settings for replica

1.2

  • Allow to create indice for multiple post types

1.2.1

  • Fix autodraft post being index on Algolia

1.2.2

  • Fix autodraft post being index on Algolia

1.2.3

  • Fix autodraft post being index on Algolia using global index

1.2.4

  • Fix replica not being push on some environment

1.3.0

Add filter on records before push on Algolia

1.3.1

Fix post indexing on global index even if disable

1.3.2

Fix indexation replica on push settings