PluginProbe
Fonto – Custom Web Fonts Manager / 1.2.2
Fonto – Custom Web Fonts Manager v1.2.2
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.2, at fonto.php

36 lines 890 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.2
5 * Plugin URI: https://wordpress.org/plugins/fonto
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: 6.6.2
11 * License: GPL v2.0 (or later)
12 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13 * Text Domain: fonto
14 * Domain Path: /languages/
15 */
16
17 if ( ! defined( 'ABSPATH' ) ) {
18 exit;
19 }
20
21 /**
22 * Returns the main instance of Fonto to prevent the need to use globals.
23 *
24 * @since 1.0.0
25 * @return Fonto
26 */
27 function fonto() {
28
29 require_once( 'includes/class-fonto.php' );
30 $instance = Fonto::instance( __FILE__, '1.2.2' );
31
32 return $instance;
33 }
34
35 $instance = fonto();
36