# text-typing/trunk/build/render.php

Text Typing – grab attention with animated typing headlines, version trunk. 12 lines.

- Page: https://pluginprobe.com/plugins/text-typing/trunk/code/build/render.php
- Raw: https://pluginprobe.com/plugins/text-typing/trunk/raw/build/render.php
- Modified: 2026-07-18T09:16:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/text-typing/trunk/code/build/render.php#L10-L20`.

```php
<?php
if ( !defined( 'ABSPATH' ) ) { exit; }

$id = wp_unique_id( 'ttbTextTyping-' );
?>

<div
	<?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- get_block_wrapper_attributes() is properly escaped ?>
	<?php echo get_block_wrapper_attributes(); ?>
	id='<?php echo esc_attr( $id ); ?>'
	data-attributes='<?php echo esc_attr( wp_json_encode( $attributes ) ); ?>'
></div>
```
