# ultimate-post/5.0.41/addons/custom_font/init.php

Post Grid Gutenberg Blocks – PostX, version 5.0.41. 13 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post/5.0.41/code/addons/custom_font/init.php
- Raw: https://pluginprobe.com/plugins/ultimate-post/5.0.41/raw/addons/custom_font/init.php
- Modified: 2026-09-16T12:17:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ultimate-post/5.0.41/code/addons/custom_font/init.php#L10-L20`.

```php
<?php
defined( 'ABSPATH' ) || exit;

add_action( 'init', 'ultp_custom_font_init' );
function ultp_custom_font_init() {
	if ( ultimate_post()->get_setting( 'ultp_custom_font' ) == 'true' ) {
		if ( current_user_can( 'manage_options' ) ) {
			require_once ULTP_PATH . '/addons/custom_font/Custom_Font.php';
			new \ULTP\Custom_Font();
		}
	}
}

```
