PHP 8.2.29
Preview: fonts.php Size: 9.56 KB
/home/medyaist/hurdamakara.com.tr/wp-includes/fonts.php
<?php
/**
 * Fonts functions.
 *
 * @package    WordPress
 * @subpackage Fonts
 * @since      6.4.0
 */

/**
 * Generates and prints font-face styles for given fonts or theme.json fonts.
 *
 * @since 6.4.0
 *
 * @param array[][] $fonts {
 *     Optional. The font-families and their font faces. Default empty array.
 *
 *     @type array ...$0 {
 *         An indexed or associative (keyed by font-family) array of font variations for this font-family.
 *         Each font face has the following structure.
 *
 *         @type array ...$0 {
 *             The font face properties.
 *
 *             @type string          $font-family             The font-family property.
 *             @type string|string[] $src                     The URL(s) to each resource containing the font data.
 *             @type string          $font-style              Optional. The font-style property. Default 'normal'.
 *             @type string          $font-weight             Optional. The font-weight property. Default '400'.
 *             @type string          $font-display            Optional. The font-display property. Default 'fallback'.
 *             @type string          $ascent-override         Optional. The ascent-override property.
 *             @type string          $descent-override        Optional. The descent-override property.
 *             @type string          $font-stretch            Optional. The font-stretch property.
 *             @type string          $font-variant            Optional. The font-variant property.
 *             @type string          $font-feature-settings   Optional. The font-feature-settings property.
 *             @type string          $font-variation-settings Optional. The font-variation-settings property.
 *             @type string          $line-gap-override       Optional. The line-gap-override property.
 *             @type string          $size-adjust             Optional. The size-adjust property.
 *             @type string          $unicode-range           Optional. The unicode-range property.
 *         }
 *     }
 * }
 */
function wp_print_font_faces( $fonts = array() ) {

	if ( empty( $fonts ) ) {
		$fonts = WP_Font_Face_Resolver::get_fonts_from_theme_json();
	}

	if ( empty( $fonts ) ) {
		return;
	}

	$wp_font_face = new WP_Font_Face();
	$wp_font_face->generate_and_print( $fonts );
}

/**
 * Generates and prints font-face styles defined the the theme style variations.
 *
 * @since 6.7.0
 *
 */
function wp_print_font_faces_from_style_variations() {
	$fonts = WP_Font_Face_Resolver::get_fonts_from_style_variations();

	if ( empty( $fonts ) ) {
		return;
	}

	wp_print_font_faces( $fonts );
}

/**
 * Registers a new font collection in the font library.
 *
 * See {@link https://schemas.wp.org/trunk/font-collection.json} for the schema
 * the font collection data must adhere to.
 *
 * @since 6.5.0
 *
 * @param string $slug Font collection slug. May only contain alphanumeric characters, dashes,
 *                     and underscores. See sanitize_title().
 * @param array  $args {
 *     Font collection data.
 *
 *     @type string       $name          Required. Name of the font collection shown in the Font Library.
 *     @type string       $description   Optional. A short descriptive summary of the font collection. Default empty.
 *     @type array|string $font_families Required. Array of font family definitions that are in the collection,
 *                                       or a string containing the path or URL to a JSON file containing the font collection.
 *     @type array        $categories    Optional. Array of categories, each with a name and slug, that are used by the
 *                                       fonts in the collection. Default empty.
 * }
 * @return WP_Font_Collection|WP_Error A font collection if it was registered
 *                                     successfully, or WP_Error object on failure.
 */
function wp_register_font_collection( string $slug, array $args ) {
	return WP_Font_Library::get_instance()->register_font_collection( $slug, $args );
}

/**
 * Unregisters a font collection from the Font Library.
 *
 * @since 6.5.0
 *
 * @param string $slug Font collection slug.
 * @return bool True if the font collection was unregistered successfully, else false.
 */
function wp_unregister_font_collection( string $slug ) {
	return WP_Font_Library::get_instance()->unregister_font_collection( $slug );
}

/**
 * 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.
 *
 * @since 6.5.0
 *
 * @see wp_font_dir()
 *
 * @return array See wp_font_dir() for description.
 */
function wp_get_font_dir() {
	return wp_font_dir( false );
}

/**
 * Returns an array containing the current fonts upload directory's path and URL.
 *
 * @since 6.5.0
 *
 * @param bool $create_dir Optional. Whether to check and create the font uploads directory. Default true.
 * @return array {
 *     Array of information about the font upload directory.
 *
 *     @type string       $path    Base directory and subdirectory or full path to the fonts upload directory.
 *     @type string       $url     Base URL and subdirectory or absolute URL to the fonts upload directory.
 *     @type string       $subdir  Subdirectory
 *     @type string       $basedir Path without subdir.
 *     @type string       $baseurl URL path without subdir.
 *     @type string|false $error   False or error message.
 * }
 */
function wp_font_dir( $create_dir = true ) {
	/*
	 * Allow extenders to manipulate the font directory consistently.
	 *
	 * Ensures the upload_dir filter is fired both when calling this function
	 * directly and when the upload directory is filtered in the Font Face
	 * REST API endpoint.
	 */
	add_filter( 'upload_dir', '_wp_filter_font_directory' );
	$font_dir = wp_upload_dir( null, $create_dir, false );
	remove_filter( 'upload_dir', '_wp_filter_font_directory' );
	return $font_dir;
}

/**
 * A callback function for use in the {@see 'upload_dir'} filter.
 *
 * This function is intended for internal use only and should not be used by plugins and themes.
 * Use wp_get_font_dir() instead.
 *
 * @since 6.5.0
 * @access private
 *
 * @param string $font_dir The font directory.
 * @return string The modified font directory.
 */
function _wp_filter_font_directory( $font_dir ) {
	if ( doing_filter( 'font_dir' ) ) {
		// Avoid an infinite loop.
		return $font_dir;
	}

	$font_dir = array(
		'path'    => untrailingslashit( $font_dir['basedir'] ) . '/fonts',
		'url'     => untrailingslashit( $font_dir['baseurl'] ) . '/fonts',
		'subdir'  => '',
		'basedir' => untrailingslashit( $font_dir['basedir'] ) . '/fonts',
		'baseurl' => untrailingslashit( $font_dir['baseurl'] ) . '/fonts',
		'error'   => false,
	);

	/**
	 * Filters the fonts directory data.
	 *
	 * This filter allows developers to modify the fonts directory data.
	 *
	 * @since 6.5.0
	 *
	 * @param array $font_dir {
	 *     Array of information about the font upload directory.
	 *
	 *     @type string       $path    Base directory and subdirectory or full path to the fonts upload directory.
	 *     @type string       $url     Base URL and subdirectory or absolute URL to the fonts upload directory.
	 *     @type string       $subdir  Subdirectory
	 *     @type string       $basedir Path without subdir.
	 *     @type string       $baseurl URL path without subdir.
	 *     @type string|false $error   False or error message.
	 * }
	 */
	return apply_filters( 'font_dir', $font_dir );
}

/**
 * Deletes child font faces when a font family is deleted.
 *
 * @access private
 * @since 6.5.0
 *
 * @param int     $post_id Post ID.
 * @param WP_Post $post    Post object.
 */
function _wp_after_delete_font_family( $post_id, $post ) {
	if ( 'wp_font_family' !== $post->post_type ) {
		return;
	}

	$font_faces_ids = get_children(
		array(
			'post_parent' => $post_id,
			'post_type'   => 'wp_font_face',
			'fields'      => 'ids',
		)
	);

	foreach ( $font_faces_ids as $font_faces_id ) {
		wp_delete_post( $font_faces_id, true );
	}
}

/**
 * Deletes associated font files when a font face is deleted.
 *
 * @access private
 * @since 6.5.0
 *
 * @param int     $post_id Post ID.
 * @param WP_Post $post    Post object.
 */
function _wp_before_delete_font_face( $post_id, $post ) {
	if ( 'wp_font_face' !== $post->post_type ) {
		return;
	}

	$font_files = get_post_meta( $post_id, '_wp_font_face_file', false );
	$font_dir   = untrailingslashit( wp_get_font_dir()['basedir'] );

	foreach ( $font_files as $font_file ) {
		wp_delete_file( $font_dir . '/' . $font_file );
	}
}

/**
 * Register the default font collections.
 *
 * @access private
 * @since 6.5.0
 */
function _wp_register_default_font_collections() {
	wp_register_font_collection(
		'google-fonts',
		array(
			'name'          => _x( 'Google Fonts', 'font collection name' ),
			'description'   => __( 'Install from Google Fonts. Fonts are copied to and served from your site.' ),
			'font_families' => 'https://s.w.org/images/fonts/wp-6.9/collections/google-fonts-with-preview.json',
			'categories'    => array(
				array(
					'name' => _x( 'Sans Serif', 'font category' ),
					'slug' => 'sans-serif',
				),
				array(
					'name' => _x( 'Display', 'font category' ),
					'slug' => 'display',
				),
				array(
					'name' => _x( 'Serif', 'font category' ),
					'slug' => 'serif',
				),
				array(
					'name' => _x( 'Handwriting', 'font category' ),
					'slug' => 'handwriting',
				),
				array(
					'name' => _x( 'Monospace', 'font category' ),
					'slug' => 'monospace',
				),
			),
		)
	);
}

Directory Contents

Dirs: 29 × Files: 149
Name Size Perms Modified Actions
- drwxr-xr-x 2025-12-18 04:00:48
Edit Download
assets DIR
- drwxr-xr-x 2026-01-13 05:10:58
Edit Download
- drwxr-xr-x 2026-01-13 16:50:50
Edit Download
- drwxr-xr-x 2026-01-08 23:33:37
Edit Download
- drwxr-xr-x 2026-01-08 23:34:33
Edit Download
blocks DIR
- drwxr-xr-x 2026-01-30 00:47:11
Edit Download
- drwxr-xr-x 2025-12-18 04:00:48
Edit Download
css DIR
- drwxr-xr-x 2025-12-18 04:00:48
Edit Download
customize DIR
- drwxr-xr-x 2026-01-13 11:42:45
Edit Download
fonts DIR
- drwxr-xr-x 2026-01-13 05:04:45
Edit Download
html-api DIR
- drwxr-xr-x 2026-01-14 23:22:58
Edit Download
ID3 DIR
- drwxr-xr-x 2026-01-07 00:14:27
Edit Download
images DIR
- drwxr-xr-x 2026-01-13 05:26:49
Edit Download
- drwxr-xr-x 2026-01-14 23:23:24
Edit Download
IXR DIR
- drwxr-xr-x 2026-01-14 23:19:44
Edit Download
js DIR
- drwxr-xr-x 2026-01-07 21:52:17
Edit Download
l10n DIR
- drwxr-xr-x 2026-01-14 23:23:59
Edit Download
- drwxr-xr-x 2026-01-13 05:07:20
Edit Download
PHPMailer DIR
- drwxr-xr-x 2026-01-07 00:17:33
Edit Download
pomo DIR
- drwxr-xr-x 2026-01-14 23:24:20
Edit Download
Requests DIR
- drwxr-xr-x 2024-03-25 09:23:08
Edit Download
rest-api DIR
- drwxr-xr-x 2026-01-14 23:24:29
Edit Download
SimplePie DIR
- drwxr-xr-x 2025-12-18 04:00:50
Edit Download
sitemaps DIR
- drwxr-xr-x 2025-12-18 04:00:50
Edit Download
- drwxr-xr-x 2026-01-13 20:28:36
Edit Download
- drwxr-xr-x 2025-12-18 04:00:50
Edit Download
Text DIR
- drwxr-xr-x 2026-01-13 05:04:56
Edit Download
- drwxr-xr-x 2026-01-08 23:35:37
Edit Download
widgets DIR
- drwxr-xr-x 2026-01-14 23:25:34
Edit Download
7.80 KB lrw-r--r-- 2025-11-17 07:58:28
Edit Download
18.94 KB lrw-r--r-- 2025-10-24 01:04:26
Edit Download
7.35 KB lrw-r--r-- 2025-10-20 05:52:24
Edit Download
12.90 KB lrw-r--r-- 2024-11-29 19:46:22
Edit Download
61.02 KB lrw-r--r-- 2025-11-07 09:42:34
Edit Download
112.05 KB lrw-r--r-- 2025-10-21 08:32:36
Edit Download
42.63 KB lrw-r--r-- 2025-10-19 14:42:28
Edit Download
6.61 KB lrw-r--r-- 2024-09-17 18:08:16
Edit Download
2.18 KB lrw-r--r-- 2023-04-05 10:12:26
Edit Download
2.41 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
7.43 KB lrw-r--r-- 2023-09-14 09:46:20
Edit Download
17.46 KB lrw-r--r-- 2024-07-17 21:52:18
Edit Download
5.14 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
16.70 KB lrw-r--r-- 2025-04-03 10:53:28
Edit Download
8.28 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
2.92 KB lrw-r--r-- 2025-09-28 18:56:28
Edit Download
4.60 KB lrw-r--r-- 2025-08-07 11:47:34
Edit Download
11.62 KB lrw-r--r-- 2025-03-05 19:17:24
Edit Download
2.50 KB lrw-r--r-- 2025-10-21 04:14:02
Edit Download
1.97 KB lrw-r--r-- 2024-09-19 22:55:36
Edit Download
11.25 KB lrw-r--r-- 2025-10-21 04:14:02
Edit Download
5.32 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
10.60 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
67.84 KB lrw-r--r-- 2025-11-24 21:54:36
Edit Download
6.34 KB lrw-r--r-- 2025-10-06 08:31:34
Edit Download
5.49 KB lrw-r--r-- 2025-03-04 10:06:28
Edit Download
1.99 KB lrw-r--r-- 2024-09-19 23:07:12
Edit Download
7.02 KB lrw-r--r-- 2025-10-30 13:03:32
Edit Download
4.91 KB lrw-r--r-- 2025-09-29 13:29:36
Edit Download
16.86 KB lrw-r--r-- 2024-05-01 21:01:10
Edit Download
24.23 KB lrw-r--r-- 2025-10-20 06:20:28
Edit Download
3.97 KB lrw-r--r-- 2025-06-18 17:39:52
Edit Download
47.66 KB lrw-r--r-- 2025-10-31 15:57:30
Edit Download
9.22 KB lrw-r--r-- 2025-02-11 10:40:30
Edit Download
25.51 KB lrw-r--r-- 2025-09-06 23:47:36
Edit Download
198.38 KB lrw-r--r-- 2025-10-06 22:24:36
Edit Download
56.65 KB lrw-r--r-- 2025-10-06 22:24:36
Edit Download
10.46 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
10.95 KB lrw-r--r-- 2024-10-13 16:09:12
Edit Download
29.26 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
70.91 KB lrw-r--r-- 2025-10-06 22:24:36
Edit Download
35.30 KB lrw-r--r-- 2025-11-10 17:28:32
Edit Download
15.02 KB lrw-r--r-- 2025-10-16 17:01:36
Edit Download
2.57 KB lrw-r--r-- 2025-10-14 02:47:32
Edit Download
39.83 KB lrw-r--r-- 2024-06-14 09:18:12
Edit Download
70.64 KB lrw-r--r-- 2025-04-24 19:22:30
Edit Download
15.56 KB lrw-r--r-- 2025-04-10 10:47:26
Edit Download
7.33 KB lrw-r--r-- 2023-02-21 13:39:20
Edit Download
253 B lrw-r--r-- 2024-09-27 16:28:14
Edit Download
7.96 KB lrw-r--r-- 2024-10-22 07:16:16
Edit Download
3.23 KB lrw-r--r-- 2025-07-30 20:03:30
Edit Download
969 B lrw-r--r-- 2024-09-30 19:50:20
Edit Download
16.28 KB lrw-r--r-- 2025-11-03 20:47:34
Edit Download
7.22 KB lrw-r--r-- 2023-06-24 14:17:24
Edit Download
12.95 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
5.84 KB lrw-r--r-- 2023-06-22 11:36:26
Edit Download
1.97 KB lrw-r--r-- 2022-12-15 18:32:18
Edit Download
4.30 KB lrw-r--r-- 2023-10-11 04:05:26
Edit Download
2.91 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
40.60 KB lrw-r--r-- 2025-08-20 09:55:28
Edit Download
20.22 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
36.11 KB lrw-r--r-- 2025-08-26 18:05:30
Edit Download
17.01 KB lrw-r--r-- 2025-04-28 13:37:28
Edit Download
7.27 KB lrw-r--r-- 2024-02-27 19:38:16
Edit Download
6.62 KB lrw-r--r-- 2025-05-11 14:16:30
Edit Download
16.49 KB lrw-r--r-- 2025-02-25 19:40:22
Edit Download
1.79 KB lrw-r--r-- 2024-02-05 22:25:14
Edit Download
29.82 KB lrw-r--r-- 2025-04-20 20:51:30
Edit Download
6.67 KB lrw-r--r-- 2025-10-21 12:59:34
Edit Download
8.98 KB lrw-r--r-- 2025-06-18 17:39:52
Edit Download
19.42 KB lrw-r--r-- 2025-08-31 18:43:30
Edit Download
12.01 KB lrw-r--r-- 2024-09-13 19:12:16
Edit Download
17.11 KB lrw-r--r-- 2025-04-04 19:00:28
Edit Download
6.74 KB lrw-r--r-- 2024-03-06 02:05:12
Edit Download
30.93 KB lrw-r--r-- 2025-06-24 20:40:34
Edit Download
4.99 KB lrw-r--r-- 2024-09-03 15:19:14
Edit Download
4.25 KB lrw-r--r-- 2025-10-01 10:23:28
Edit Download
24.72 KB lrw-r--r-- 2025-10-21 01:33:30
Edit Download
29.96 KB lrw-r--r-- 2025-02-09 08:09:22
Edit Download
6.34 KB lrw-r--r-- 2025-08-20 12:01:32
Edit Download
159.91 KB lrw-r--r-- 2025-10-22 03:30:30
Edit Download
6.72 KB lrw-r--r-- 2022-10-04 00:59:14
Edit Download
4.77 KB lrw-r--r-- 2025-02-17 08:24:22
Edit Download
3.38 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
11.18 KB lrw-r--r-- 2025-02-23 08:11:22
Edit Download
62.19 KB lrw-r--r-- 2025-07-15 05:22:38
Edit Download
2.46 KB lrw-r--r-- 2023-09-08 06:32:24
Edit Download
9.17 KB lrw-r--r-- 2025-06-29 18:47:30
Edit Download
31.13 KB lrw-r--r-- 2025-10-27 13:12:36
Edit Download
33.38 KB lrw-r--r-- 2025-11-18 07:12:30
Edit Download
7.15 KB lrw-r--r-- 2025-02-11 08:14:22
Edit Download
3.47 KB lrw-r--r-- 2025-09-16 19:47:32
Edit Download
1.87 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
30.91 KB lrw-r--r-- 2025-08-31 18:43:30
Edit Download
7.29 KB lrw-r--r-- 2025-06-27 12:09:32
Edit Download
7.35 KB lrw-r--r-- 2025-02-18 19:32:22
Edit Download
11.86 KB lrw-r--r-- 2025-10-28 18:37:34
Edit Download
18.12 KB lrw-r--r-- 2025-03-26 18:42:28
Edit Download
39.99 KB lrw-r--r-- 2025-10-22 13:30:32
Edit Download
5.17 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
979 B lrw-r--r-- 2024-02-14 16:27:10
Edit Download
18.44 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
10.24 KB lrw-r--r-- 2024-11-19 23:50:24
Edit Download
34.90 KB lrw-r--r-- 2024-11-03 23:34:16
Edit Download
7.19 KB lrw-r--r-- 2024-06-06 05:02:16
Edit Download
160.50 KB lrw-r--r-- 2025-11-10 03:43:38
Edit Download
64.27 KB lrw-r--r-- 2025-09-28 18:56:28
Edit Download
27.95 KB lrw-r--r-- 2024-07-19 20:44:16
Edit Download
4.69 KB lrw-r--r-- 2025-02-18 19:32:22
Edit Download
2.94 KB lrw-r--r-- 2025-07-06 08:57:36
Edit Download
3.27 KB lrw-r--r-- 2022-09-12 12:47:14
Edit Download
18.00 KB lrw-r--r-- 2024-11-02 12:01:20
Edit Download
210.40 KB lrw-r--r-- 2025-08-21 12:00:40
Edit Download
25.86 KB lrw-r--r-- 2025-11-01 01:46:32
Edit Download
373 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
343 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
338 B lrw-r--r-- 2022-09-20 11:17:12
Edit Download
11.10 KB lrw-r--r-- 2024-09-30 20:58:16
Edit Download
37.02 KB lrw-r--r-- 2025-11-10 19:51:36
Edit Download
4.02 KB lrw-r--r-- 2023-05-02 12:45:22
Edit Download
31.84 KB lrw-r--r-- 2026-01-30 20:29:56
Edit Download
5.38 KB lrw-r--r-- 2024-03-04 09:41:10
Edit Download
1.16 KB lrw-r--r-- 2020-01-28 21:45:18
Edit Download
4.04 KB lrw-r--r-- 2024-03-04 09:41:10
Edit Download
9.56 KB lrw-r--r-- 2025-10-09 19:05:40
Edit Download
281.84 KB lrw-r--r-- 2025-11-06 20:37:32
Edit Download
14.95 KB lrw-r--r-- 2025-10-16 17:01:36
Edit Download
8.44 KB lrw-r--r-- 2025-10-16 17:01:36
Edit Download
5.72 KB lrw-r--r-- 2025-02-24 10:43:24
Edit Download
81.72 KB lrw-r--r-- 2025-10-22 18:02:36
Edit Download
25.24 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
4.81 KB lrw-r--r-- 2024-06-13 17:50:14
Edit Download
2.79 KB lrw-r--r-- 2025-10-17 14:14:32
Edit Download
89.69 KB lrw-r--r-- 2025-10-27 13:35:36
Edit Download
4.11 KB lrw-r--r-- 2025-08-27 10:42:30
Edit Download
6.94 KB lrw-r--r-- 2024-05-27 13:29:16
Edit Download
200 B lrw-r--r-- 2020-11-12 08:17:08
Edit Download
255 B lrw-r--r-- 2020-11-16 19:52:06
Edit Download
22.66 KB lrw-r--r-- 2025-09-03 09:18:32
Edit Download
9.68 KB lrw-r--r-- 2025-10-21 08:32:36
Edit Download
23.49 KB lrw-r--r-- 2025-11-04 16:51:36
Edit Download
3.16 KB lrw-r--r-- 2021-05-15 14:38:06
Edit Download
544 B lrw-r--r-- 2023-09-30 21:22:28
Edit Download
2.84 KB lrw-r--r-- 2025-08-27 07:34:28
Edit Download
6.09 KB lrw-r--r-- 2025-11-07 09:42:34
Edit Download
6.41 KB lrw-r--r-- 2025-01-22 16:48:26
Edit Download
69.46 KB lrw-r--r-- 2025-09-12 15:05:36
Edit Download
445 B lrw-r--r-- 2022-07-21 19:45:12
Edit Download
799 B lrw-r--r-- 2025-01-22 16:48:26
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).