# wordpress-seo/28.2/src/presenters/twitter/creator-presenter.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 28.2. 28 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/28.2/code/src/presenters/twitter/creator-presenter.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/28.2/raw/src/presenters/twitter/creator-presenter.php
- Modified: 2021-07-02T07:00:38+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/wordpress-seo/28.2/code/src/presenters/twitter/creator-presenter.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Presenters\Twitter;

use Yoast\WP\SEO\Presenters\Abstract_Indexable_Tag_Presenter;

/**
 * Presenter class for the Twitter creator.
 */
class Creator_Presenter extends Abstract_Indexable_Tag_Presenter {

	/**
	 * The tag key name.
	 *
	 * @var string
	 */
	protected $key = 'twitter:creator';

	/**
	 * Gets the raw value of a presentation.
	 *
	 * @return string The raw value.
	 */
	public function get() {
		return $this->presentation->twitter_creator;
	}
}

```
