Linux 软件免费装
Banner图

VecPost AI Search for Posts

开发者 krunalb18
更新时间 2026年5月23日 18:33
PHP版本: 7.4 及以上
WordPress版本: 6.9
版权: GPLv2 or later
版权网址: 版权信息

标签

search semantic search OpenAI AI search embeddings

下载

1.0.0

详情介绍:

VecPost AI Search for Posts replaces WordPress's default SQL LIKE search with vector-based semantic search. Instead of matching exact words, it understands the meaning of a search query. Example: A user searching "heart workouts" will find your post titled "Best cardiovascular exercises" - even though no words overlap - because the meanings are similar. How It Works
  1. When you publish a post, the plugin sends its content to your chosen AI provider (OpenAI or Google Gemini) to generate a vector embedding - a list of numbers that represents the meaning of the text.
  2. These numbers are stored in your database.
  3. When a user searches, their query is also converted to numbers, and the plugin finds posts whose numbers are closest - meaning most semantically similar.
Features Third-Party Services This plugin sends post content to external AI APIs to generate embeddings. By using this plugin, you agree to the terms of service and privacy policies of your chosen provider: No data is sent without your API key being configured. Data is only transmitted when posts are published or during bulk indexing. Performance Note Semantic search requires loading all embeddings into PHP memory for comparison. This works well for sites with up to approximately 1,500 posts. For larger sites, a dedicated vector database (pgvector, Qdrant, or Pinecone) is recommended.

安装:

  1. Upload the plugin folder to /wp-content/plugins/
  2. Activate the plugin through the Plugins menu in WordPress
  3. Go to Settings -> VecPost - AI Semantic Search for Posts
  4. Enter your OpenAI or Google Gemini API key
  5. Click Test Connection to verify the key works
  6. Click Start Bulk Index to index your existing posts
  7. Add the search block to any page via the Gutenberg editor, or use the shortcode [vecpost_semantic_search]

升级注意事项:

1.0.0 Initial release. Run bulk indexing after activation to index existing posts.

常见问题:

Do I need an OpenAI account?

Yes. You need either an OpenAI API key (https://platform.openai.com) or a Google Gemini API key (https://aistudio.google.com). Both have free tiers that are sufficient for small sites.

Does this replace the default WordPress search?

No. This plugin adds a separate search widget/block. Your default WordPress search continues to work unchanged. You can place the semantic search widget on any page alongside or instead of the default search.

Is my content sent to OpenAI/Google?

Yes - post content is sent to the embedding API when you publish a post or run bulk indexing. The API returns numbers (the embedding vector) and does not store or use your content for training. See their privacy policies for full details.

How much does it cost?

Using text-embedding-3-small (the default), indexing costs approximately $0.002 per 1,000 posts. Each search query costs a fraction of a cent. For most sites, monthly costs are under $1.

What happens if I change the embedding model?

The plugin detects the model change and automatically re-indexes all posts using the new model. During re-indexing, searches will return no results until indexing is complete.

Can I use this on a multisite installation?

The plugin has not been tested on WordPress Multisite and is not officially supported in that environment.

更新日志:

1.0.0