> For the complete documentation index, see [llms.txt](https://gitbook.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gitbook.com/docs/documentation/ja-gitbook-documentation/kontentsuwosuru/blocks/conditional-content.md).

# 条件付きコンテンツ

条件付きコンテンツブロックを使うと、ユーザーデータや変数に基づいて、ページ上の特定のコンテンツブロックを誰が表示できるかを制御できます。これらの変数は、Cookie、機能フラグ、認証済みアクセス、または URL パラメータを介して渡すことができます。

### 条件付きコンテンツを作成

条件付きブロックを追加するには、エディタで新しい行を開始し、 <kbd>/</kbd>と入力してから、 <picture><source srcset="/files/QtQtLiYwc1oJj119cgUz" media="(prefers-color-scheme: dark)"><img src="/files/3d64f0529a83b9e1d7a5e924729ec63c1401a2dc" alt="The Page condition icon in GitBook"></picture> **条件付きコンテンツ**.

ブロックを挿入した後、ブロック右上の赤い条件バッジをクリックします。

これをクリックすると、条件を追加できるようになります [条件エディタ](/docs/documentation/ja-gitbook-documentation/suru/adaptive-content/adapting-your-content.md#working-with-the-condition-editor)。条件は [式](https://gitbook.com/docs/creating-content/variables-and-expressions) として記述でき、サイトで定義されたデータに対して実行されます。次のデータを参照できます [変数](/docs/documentation/ja-gitbook-documentation/kontentsuwosuru/variables-and-expressions.md)、または訪問者から次の方法で送られてくるデータ [クレーム](/docs/documentation/ja-gitbook-documentation/suru/adaptive-content/enabling-adaptive-content.md#set-your-visitor-schema).

参照 [アダプティブ コンテンツ](/docs/documentation/ja-gitbook-documentation/suru/adaptive-content.md) 詳細については。

### 例

以下の例では、ボタンからリンクされた URL パラメータを使用して、どの条件付きコンテンツブロックを表示するかを制御しています。

{% if visitor.claims.unsigned.example\_attribute\_A %}
このブロックは、次のユーザーにのみ表示されます **を** 属性 A。

<a href="https://gitbook.com/docs/creating-content/blocks/conditional-content?visitor.example_attribute_A=false" class="button primary">属性 A なしで表示</a>
{% endif %}

{% if !visitor.claims.unsigned.example\_attribute\_A %}
このブロックは、次のユーザーにのみ表示されます **なし** 属性 A。

<a href="https://gitbook.com/docs/creating-content/blocks/conditional-content?visitor.example_attribute_A=true" class="button primary">属性 A ありで表示</a>
{% endif %}

## Markdown での表記

```markdown
## 例

{% if visitor.claims.unsigned.example_attribute_A %}
このブロックは、属性 A **を持つ**ユーザーにのみ表示されます。
<a href="https://gitbook.com/docs/creating-content/blocks/conditional-content?visitor.example_attribute_A=false" class="button primary">属性 A なしで表示</a>
{% endif %}

{% if !visitor.claims.unsigned.example_attribute_A %}
このブロックは、属性 A **を持たない**ユーザーにのみ表示されます。
<a href="https://gitbook.com/docs/creating-content/blocks/conditional-content?visitor.example_attribute_A=true" class="button primary">属性 A ありで表示</a>
{% endif %}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://gitbook.com/docs/documentation/ja-gitbook-documentation/kontentsuwosuru/blocks/conditional-content.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
