Yoast\WP\SEO\Bulk_Editor\Domain\Updates

Post_Update::has_titlepublicYoast 1.0

Whether this update carries a title. An empty string is a value: it clears the title.

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

Хуков нет.

Возвращает

true|false. Whether this update carries a title.

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

$Post_Update = new Post_Update();
$Post_Update->has_title(): bool;

Код Post_Update::has_title() Yoast 28.3

public function has_title(): bool {
	return $this->title !== null;
}