Automattic\WooCommerce\Internal\Admin\Onboarding
OnboardingFonts::get_font_family_by_slug_from_font_collection()
Get font family by slug from font collection.
Метод класса: OnboardingFonts{}
Хуков нет.
Возвращает
Массив|null
.
Использование
$result = OnboardingFonts::get_font_family_by_slug_from_font_collection( $slug, $font_families_collection );
- $slug(строка) (обязательный)
- Font slug.
- $font_families_collection(массив) (обязательный)
- Font families collection.
Код OnboardingFonts::get_font_family_by_slug_from_font_collection() OnboardingFonts::get font family by slug from font collection WC 9.5.1
private static function get_font_family_by_slug_from_font_collection( $slug, $font_families_collection ) { $font_family = null; foreach ( $font_families_collection as $font_family ) { if ( $font_family['font_family_settings']['slug'] === $slug ) { $font_family = $font_family['font_family_settings']; break; } } return $font_family; }