wp_add_inline_script()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
wp_add_inline_script( string $handle, string $data, string $position = 'after' ): bool
Описание
Русский перевод этого описания пока проверяется. Показан оригинал.
Code will only be added if the script is already in the queue.
Accepts a string $data containing the code. If two or more code blocks are added to the same script $handle, they will be printed in the order they were added, i.e. the latter added code can redeclare the previous.
Параметры
$handle
string
обязательный
$data
string
обязательный
$position
string
необязательный
= 'after'
Возвращаемое значение
bool
Исходный код
wp-includes/functions-wp-scripts.php:210
function wp_add_inline_script( $handle, $data, $position = 'after' ) {
_wp_scripts_maybe_doing_it_wrong( __FUNCTION__, $handle );
if ( false !== stripos( $data, '</script>' ) ) {
_doing_it_wrong(
__FUNCTION__,
sprintf(
/* translators: 1: <script>, 2: wp_add_inline_script() */
__( 'Do not pass %1$s tags to %2$s.' ),
'<code><script></code>',
'<code>wp_add_inline_script()</code>'
),
'4.5.0'
);
$data = trim( (string) preg_replace( '#<script[^>]*>(.*)</script>#is', '$1', $data ) );
}
return wp_scripts()->add_inline_script( $handle, $data, $position );
}
История изменений
| Версия | Описание |
|---|---|
| 4.5.0 | Introduced. |

