PluginProbe
Fonto – Custom Web Fonts Manager / 1.2.0
Fonto – Custom Web Fonts Manager v1.2.0
1.2.4 trunk 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3
fonto / fonto.php

fonto.php in Fonto – Custom Web Fonts Manager 1.2.0, at fonto.php

34 lines 788 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Fonto - Custom Web Fonts Manager
4 * Version: 1.2.0
5 * Plugin URI: https://pixelgrade.com
6 * Description: Use your premium web fonts directly in the Editor or with the Customify and Style Manager plugins. Works with Typekit, MyFonts, Fonts.com, self-hosted fonts, and others.
7 * Author: Pixelgrade
8 * Author URI: https://pixelgrade.com
9 * Requires at least: 4.9.9
10 * Tested up to: 5.7.2
11 * Text Domain: fonto
12 * Domain Path: /languages/
13 */
14
15 if ( ! defined( 'ABSPATH' ) ) {
16 exit;
17 }
18
19 /**
20 * Returns the main instance of Fonto to prevent the need to use globals.
21 *
22 * @since 1.0.0
23 * @return Fonto
24 */
25 function fonto() {
26
27 require_once( 'includes/class-fonto.php' );
28 $instance = Fonto::instance( __FILE__, '1.2.0' );
29
30 return $instance;
31 }
32
33 $instance = fonto();
34