Yoast\WP\SEO\Presenters

Abstract_Indexable_Presenter::escape_key()publicYoast 1.0

Transforms an indexable presenter's key to a json safe key string.

Метод класса: Abstract_Indexable_Presenter{}

Хуков нет.

Возвращает

Строку|null.

Использование

$Abstract_Indexable_Presenter = new Abstract_Indexable_Presenter();
$Abstract_Indexable_Presenter->escape_key();

Код Abstract_Indexable_Presenter::escape_key() Yoast 22.4

public function escape_key() {
	if ( $this->key === 'NO KEY PROVIDED' ) {
		return null;
	}
	return \str_replace( [ ':', ' ', '-' ], '_', $this->key );
}