by Fumiki Takahashi on WordPress.org
This plugin add new custom post type ‘FAQ’. With some functionality, you can build help center for your user.
What is help center? We collect examples at our github wiki.
This plugin will provide…
AI Overview answers user questions based on your FAQ content using a large language model.
It uses wp-ai-client (experimental) bundled via Composer, which requires an AI service to be configured in WordPress. Since wp-ai-client is still experimental, its API may change in future releases.
You can configure AI behavior and rate limiting from Settings > Hamelp in the admin panel.
Using the Block
Add the AI FAQ Overview block in the block editor. The block has the following options:
Show Sources — Display related FAQ links below the answer.
Using the Template Function
You can also use hamelp_render_ai_overview() in your theme templates:
The function accepts an optional array of arguments:
'Ask a question...', 'button_text' => 'Ask AI', 'show_sources' => true, ] ); ?>
The function automatically enqueues the required JavaScript and CSS assets.
You can use shortcode hamelp-search in page content.
[hamelp-search label='Enter your question here.'][/hamelp-search]
And you can call in your theme altenatively.