Yoast\WP\SEO\Config\Migrations
WpYoastDropIndexableMetaTableIfExists::up() public Yoast 1.0
Migration up.
{} Это метод класса: WpYoastDropIndexableMetaTableIfExists{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$WpYoastDropIndexableMetaTableIfExists = new WpYoastDropIndexableMetaTableIfExists(); $WpYoastDropIndexableMetaTableIfExists->up();
Код WpYoastDropIndexableMetaTableIfExists::up() WpYoastDropIndexableMetaTableIfExists::up Yoast 16.1.1
public function up() {
$table_name = $this->get_table_name();
// This can be done safely as it executes a DROP IF EXISTS.
$this->drop_table( $table_name );
}