# SectionIdentifier Criterion

> For the complete documentation index, see [llms.txt](https://doc.ibexa.co/en/saas/llms.txt).

SectionIdentifier Criterion

The SectionIdentifier URL Criterion matches URLs related to the content placed in a specified section identifier.

## Arguments

- `sectionIdentifiers` - string(s) representing the identifiers of the Section(s)

## Example

```php
use Ibexa\Contracts\Core\Repository\Values\URL\Query\Criterion;
use Ibexa\Contracts\Core\Repository\Values\URL\URLQuery;

$query = new URLQuery();
$query->filter = new Criterion\SectionIdentifier(['standard', 'media']);
```
