# no_texturize_shortcodes

URL: https://chugunov.pro/api-wordpress/filters/no_texturize_shortcodes/
Проверено на WordPress 6.9, обновлено 06.08.2026.
Источник: независимый русскоязычный справочник chugunov.pro. Не является официальной документацией WordPress.

Тип: хук-фильтр.
Появился в версии: 2.8.0.

## Сигнатура

```php
apply_filters( 'no_texturize_shortcodes', string[] $default_no_texturize_shortcodes )
```

## Описание

Фильтрует список шорткодов, не подлежащих типографской обработке.

## Параметры

- `$default_no_texturize_shortcodes` `string[]` — обязательный. Массив имён шорткодов.

## Фильтруемое значение

Массив имён шорткодов.

## Исходный код

Файл: `wp-includes/formatting.php:228`

```php
$no_texturize_shortcodes = apply_filters( 'no_texturize_shortcodes', $default_no_texturize_shortcodes );
```

## История изменений

- 2.8.0 — Introduced.

## Связанные

Используется в: [`wptexturize`](https://chugunov.pro/api-wordpress/functions/wptexturize/).

Оригинал в официальной документации: https://developer.wordpress.org/reference/hooks/no_texturize_shortcodes/
