# Menu Title (Title)

`Title` The title text displayed at the top of the node definition menu.

***

## Basic Usage

**Type:** `String`

**Format:** Supports color codes (`&` symbols) and PlaceholderAPI variables

**Example:**

```yaml
Title: '&6&lServer Main Menu'
```

```yaml
Title: '&aWelcome, &f%player_name%!'
```

```yaml
Title: '&8» &d&lStore System &8«'
```

***

## Conditional Title

`Title` Supports conditional formatting, and can display different titles for players in different states:

```yaml
Title:
  - condition: "%player_is_op% == true"
    allow: '&8» &4&lAdvanced Admin Panel &8« &7[Administrator]'
    deny: '&8» &6&lPlayer Panel &8«'
```

```yaml
Title:
  - condition: "%player_level% >= 20"
    allow: '&8» &6&lVIP Area &8«'
    deny: '&8» &7&lRegular Area &8«'
```

For the complete syntax of conditional logic, please refer to [🔍 Conditional Logic](/plugins/kamenu-en/menu/conditions.md).

***

## Notes

* Title length is limited; overly long titles may be truncated (recommended to keep within 32 characters)
* Supports PlaceholderAPI variables (requires the PlaceholderAPI plugin to be installed)
* Supports built-in data variables:`{data:key}` and `{gdata:key}`


---

# Agent Instructions: 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:

```
GET https://katacr.gitbook.io/plugins/kamenu-en/menu/layout.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
