wp_get_font_dir()
Retrieves font uploads directory information.
Same as wp_font_dir() but "light weight" as it doesn't attempt to create the font uploads directory. Intended for use in themes, when only 'basedir' and 'baseurl' are needed, generally in all cases when not uploading files.
Хуков нет.
Возвращает
Массив
. See wp_font_dir() for description.
Использование
wp_get_font_dir();
Заметки
- Смотрите: wp_font_dir()
Список изменений
С версии 6.5.0 | Введена. |
Код wp_get_font_dir() wp get font dir WP 6.7.1
function wp_get_font_dir() { return wp_font_dir( false ); }