> ## Content Index
> Fetch the complete content index at: https://getpublii.com/dev/llms.txt
> Use this file to discover other available public pages before exploring further.

# Pages dropdown

- URL: https://getpublii.com/dev/pages-dropdown/
- Published: 2024-08-15T20:54:24.243Z
- Updated: 2025-01-18T21:24:18.964Z
- Description: The pages dropdown can be used for situations where you want to allow users of your theme to use a specific relation to the given…
- Author: Tomasz Dziuda
- Tags: Theme Settings API

The pages dropdown can be used for situations where you want to allow users of your theme to use a specific relation to the given page.

It can be used e.g., to specify the privacy policy page:

```json
{
    "name": "homepageAboutUsPage",
    "label": "About Us Page",
    "group": "Homepage",
    "value": "",
    "type": "pages-dropdown",
    "multiple": false
}
```

The pages dropdown returns the ID/s of the selected page/s as a value, so it should be connected with the use of the [getPage](#INTERNAL_LINK#/post/159) or [getPages](#INTERNAL_LINK#/post/160) helper. If the **multiple** option is set to true, then a string with IDs separated by commas is returned.
