Title: Hamelp
Author: Fumiki Takahashi
Published: <strong>2018年8月7日</strong>
Last modified: 2026年5月21日

---

プラグインを検索

![](https://ps.w.org/hamelp/assets/banner-772x250.jpg?rev=1920764)

![](https://ps.w.org/hamelp/assets/icon-256x256.png?rev=1920789)

# Hamelp

 作者: [Fumiki Takahashi](https://profiles.wordpress.org/takahashi_fumiki/)

[ダウンロード](https://downloads.wordpress.org/plugin/hamelp.2.2.2.zip)

 * [詳細](https://ja.wordpress.org/plugins/hamelp/#description)
 * [レビュー](https://ja.wordpress.org/plugins/hamelp/#reviews)
 *  [インストール](https://ja.wordpress.org/plugins/hamelp/#installation)
 * [開発](https://ja.wordpress.org/plugins/hamelp/#developers)

 [サポート](https://wordpress.org/support/plugin/hamelp/)

## 説明

このプラグインは新しいカスタム投稿タイプ「よくある質問」を追加します。いくつかの
機能を使ってユーザーのためのヘルプページを作ることができます。ヘルプセンターとは
なんでしょうか？　いくつかの例を [GitHub Wiki](https://github.com/hametuha/hamelp/wiki)
に挙げていますので、ご覧ください。

#### ポータルを作成する

このプラグインが提供する機能は……

 * シングルページとアーカイブページを持つカスタムタクソノミー。
 * カスタム投稿タイプに紐づくカスタムタクソノミー。
 * インクリメンタル検索ボックス。
 * AI オーバービュー（2.0.0から）

#### AI オーバービュー

AI Overview answers user questions based on your FAQ content using a large language
model.
 It uses the [wp-ai-client](https://github.com/WordPress/wp-ai-client) bundled
with WordPress core since WordPress 7.0, which requires an AI service to be configured
in WordPress.

**Requirements:** AI Overview requires **WordPress 7.0 or later**. On older WordPress
versions, the AI Overview block and template function will still appear in the editor
and on the front-end, but the search form will not work (the REST endpoint that 
powers it is disabled). Other features of this plugin (FAQ custom post type, incremental
search, shortcode) continue to work on WordPress 6.6+. Upgrade WordPress to 7.0 
to enable AI Overview.

You can configure AI behavior and rate limiting from **Settings > Hamelp** in the
admin panel. The settings page also includes a **Rebuild Catalog Now** button to
manually refresh the FAQ catalog used as LLM context.

ブロックを使う

**AI FAQ オーバービュー** ブロックをエディターに追加してください。ブロックには次
のオプションがあります。

 * **プレースホルダー** — 入力欄のプレースホルダー。
 * **ボタンテキスト** — 送信ボタンのラベル
 * **引用元を表示** — 回答の下に関連する FAQ のリンクを表示します。
 * テンプレート関数を使う

テーマテンプレートで `hamelp_render_ai_overview()` 関数を使うこともできます。

    ```
    <?php echo hamelp_render_ai_overview(); ?>
    ```

関数はオプションの引数を配列で受け取ります。

    ```
    <php
    echo hamelp_render_ai_overview( [
        'placeholder'  => 'Ask a question...',
        'button_text'  => 'Ask AI',
        'show_sources' => true,
    ] );
    ?>
    ```

この関数は必要な JavaScript と CSS アセットを自動で読み込みます。

#### 検索ボックス

The incremental FAQ search box is available in three forms.

ブロックを使う

Add the **FAQ Search Box** block in the block editor. The block has the following
options:

 * **Label** — Input placeholder text.
 * **ボタンテキスト** — 送信ボタンのラベル
 * Using the Shortcode

ページ本文で `hamelp-search` ショートコードを利用することができます。

    ```
    [hamelp-search label='Enter your question here.'][/hamelp-search]
    ```

テンプレート関数を使う

You can also call `hamelp_render_search_box()` directly from your theme templates:

    ```
    <?php echo hamelp_render_search_box( [
        'label' => 'Enter your question here.',
        'btn'   => 'Search',
    ] ); ?>
    ```

## ブロック

このプラグインは2個のブロックを提供します。

 *   AI FAQ Overview AI-powered FAQ search that answers user questions based on 
   FAQ content.
 *   FAQ Search Box Incremental search box for FAQ posts.

## インストール

インストールは簡単です。管理画面からの自動インストールをお勧めします。`hamelp` で
検索してください。

 1. プラグインファイルをダウンロードしてから解答し、`hamelp` フォルダーを `/wp-content/
    plugins` ディレクトリにアップロードしてください。
 2. 管理画面から有効化してください。

## FAQ

### どのように貢献できますか？

Github リポジトリでコントリビュートを行うことができます。どんな[イシュー](https://github.com/hametuha/hamelp/issues)
でも[プルリクエスト](https://github.com/hametuha/hamelp/pulls)でも大歓迎です。

## 評価

このプラグインにはレビューがありません。

## 貢献者と開発者

Hamelp はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

 *   [ Fumiki Takahashi ](https://profiles.wordpress.org/takahashi_fumiki/)
 *   [ Hametuha INC. ](https://profiles.wordpress.org/hametuha/)

“Hamelp” は1ロケールに翻訳されています。 [翻訳者](https://translate.wordpress.org/projects/wp-plugins/hamelp/contributors)
のみなさん、翻訳へのご協力ありがとうございます。

[“Hamelp” をあなたの言語に翻訳しましょう。](https://translate.wordpress.org/projects/wp-plugins/hamelp)

### 開発に興味がありますか ?

[コードを閲覧](https://plugins.trac.wordpress.org/browser/hamelp/)するか、[SVN リポジトリ](https://plugins.svn.wordpress.org/hamelp/)
をチェックするか、[開発ログ](https://plugins.trac.wordpress.org/log/hamelp/)を [RSS](https://plugins.trac.wordpress.org/log/hamelp/?limit=100&mode=stop_on_copy&format=rss)
で購読してみてください。

## 変更履歴

#### 2.3.0

 * Add **FAQ Search Box** block (`hamelp/search-box`). The existing `[hamelp-search]`
   shortcode continues to work and now shares the same render logic.
 * Expose `hamelp_render_search_box()` as a public template function so themes can
   render the search box without going through the shortcode parser.

#### 2.2.0

 * Remove bundled [wp-ai-client](https://github.com/WordPress/wp-ai-client) Composer
   dependency. AI Overview now uses the wp-ai-client bundled with WordPress core,
   which requires **WordPress 7.0 or later**.
 * On WordPress versions earlier than 7.0, the AI Overview block and search form
   still render but submissions fail (no REST route). FAQ custom post type, incremental
   search, and other features remain functional.
 * Auto-rebuild the FAQ catalog on plugin activation, so the AI Overview works out
   of the box without manually running `wp hamelp rebuild`.
 * Add a **Rebuild Catalog Now** button to the settings page for manual catalog 
   refresh.

#### 2.1.0

 * 返答をパーソナライズするために AI オーバービューにユーザーコンテキストを追加。
 * セキュリティのため、ホワイトリスト方式のユーザー役割フィルター (`hamelp_allowed_user_roles`
   filter) を追加。
 * カスタマイズ用に `hamelp_user_context` と `hamelp_display_user_roles` フィルター
   を追加。
 * ローカル環境でのテストのために開発用フックのサポートを追加。
 * GlotPress（WordPress.org）を優先するため、同梱の言語ファイルを削除。

#### 2.0.0

 * AI オーバービュー機能を追加
 * 最小要件を引き上げ: PHP >=7.4, WordPress >= 6.6

#### 1.0.4

 * FAQPage の[構造化データ](https://developers.google.com/search/docs/data-types/faqpage)
   を追加。

#### 1.0.3

 * バグフィックスとグローバル関数の変更。

#### 1.0.2

 * Gutenbergでタクソノミーが表示されるように。

#### 1.0.1

 * vendor ディレクトリが含まれないバグを修正。

#### 1.0.0

 * 最初のリリース。

## メタ

 *  バージョン **2.2.2**
 *  最終更新日 **2週間前**
 *  有効インストール数 **10未満**
 *  WordPress バージョン ** 6.6またはそれ以降 **
 *  検証済み最新バージョン: **7.0**
 *  PHP バージョン ** 7.4またはそれ以降 **
 *  言語
 * [English (US)](https://wordpress.org/plugins/hamelp/)、[Japanese](https://ja.wordpress.org/plugins/hamelp/).
 *  [プラグインを翻訳](https://translate.wordpress.org/projects/wp-plugins/hamelp)
 * タグ
 * [faq](https://ja.wordpress.org/plugins/tags/faq/)[help](https://ja.wordpress.org/plugins/tags/help/)
 *  [詳細を表示](https://ja.wordpress.org/plugins/hamelp/advanced/)

## 評価

レビューはまだ送信されていません。

[Your review](https://wordpress.org/support/plugin/hamelp/reviews/#new-post)

[すべてのレビューを見る](https://wordpress.org/support/plugin/hamelp/reviews/)

## 貢献者

 *   [ Fumiki Takahashi ](https://profiles.wordpress.org/takahashi_fumiki/)
 *   [ Hametuha INC. ](https://profiles.wordpress.org/hametuha/)

## サポート

意見や質問がありますか ?

 [サポートフォーラムを表示](https://wordpress.org/support/plugin/hamelp/)