Automattic\WooCommerce\Admin
Loader::inject_after_notices() public WC 1.0
Runs after admin notices and closes div.
{} Это метод класса: Loader{}
Хуков нет.
Возвращает
null
. Ничего.
Использование
$result = Loader::inject_after_notices();
Код Loader::inject_after_notices() Loader::inject after notices WC 5.2.2
public static function inject_after_notices() {
if ( ! self::is_admin_or_embed_page() ) {
return;
}
// Close the hidden div used to prevent notices from flickering before
// they are inserted elsewhere in the page.
echo '</div>';
}