PluginProbe
Fonto – Custom Web Fonts Manager / trunk
Fonto – Custom Web Fonts Manager vtrunk
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 trunk, at fonto.php

37 lines 912 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.4
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: 5.9.0
10 * Tested up to: 7.1
11 * Requires PHP: 7.4
12 * License: GPL-2.0-or-later
13 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
14 * Text Domain: fonto
15 * Domain Path: /languages/
16 */
17
18 if ( ! defined( 'ABSPATH' ) ) {
19 exit;
20 }
21
22 /**
23 * Returns the main instance of Fonto to prevent the need to use globals.
24 *
25 * @since 1.0.0
26 * @return Fonto
27 */
28 function fonto() {
29
30 require_once( 'includes/class-fonto.php' );
31 $instance = Fonto::instance( __FILE__, '1.2.4' );
32
33 return $instance;
34 }
35
36 $fonto_instance = fonto();
37