# ablocks/2.9.1/includes/frontend/dynamic-content/interpreters/site-title.php

aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder &amp; Animation Builder, version 2.9.1. 13 lines.

- Page: https://pluginprobe.com/plugins/ablocks/2.9.1/code/includes/frontend/dynamic-content/interpreters/site-title.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.9.1/raw/includes/frontend/dynamic-content/interpreters/site-title.php
- Modified: 2025-04-22T12:59:06+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/ablocks/2.9.1/code/includes/frontend/dynamic-content/interpreters/site-title.php#L10-L20`.

```php
<?php
namespace ABlocks\Frontend\DynamicContent\Interpreters;

use ABlocks\Helper;
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
class SiteTitle extends SiteInfo {
	public function info() : string {
		return get_bloginfo( 'name' );
	}
}

```
