Yoast\WP\SEO\Helpers

Aioseo_Helper::aioseo_exists()publicYoast 1.0

Determines if the AIOSEO database table exists.

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

Хуков нет.

Возвращает

true|false. True if the table is found.

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

$Aioseo_Helper = new Aioseo_Helper();
$Aioseo_Helper->aioseo_exists();

Код Aioseo_Helper::aioseo_exists() Yoast 22.4

public function aioseo_exists() {
	return $this->wpdb_helper->table_exists( $this->get_table() ) === true;
}