Yoast\WP\SEO\Bulk_Editor\Domain\Updates
Post_Update::has_title
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() Post Update::has title Yoast 28.3
public function has_title(): bool {
return $this->title !== null;
}