WP FOFT Loader

Description

This plugin implements and automates Zach Leatherman’s “Critical FOFT with preload, with a polyfill fallback emulating font-display: optional” to optimize and speed up web font loading and improve UX by minimizing Flash of Invisible Text, Flash of Unstyled Text, and DOM Reflow.

Acknowledgement

This plugin is based on Hugh Lashbrooke’s Starter Plugin, a robust and GPL-licensed code template for creating a standards-compliant WordPress plugin.

PRO only features

  • Support for 7 additional font-weights
  • Small-caps support
  • Finer-grained control of default CSS
  • Default options reset
  • Warn user of unsaved changes when navigating plugin tabs

Configuration

Video Tutorials

Episode 1. Intro and Background

Episode 2. Font Squirrel Generator (WOFF & WOFF2)

Generating and Uploading the Font Files

Upload two files for each web font: a WOFF file and a WOFF2 file. We recommend you use Font Squirrel’s Webfont Generator to generate the files. Mandatory Font Squirrel settings are:

Select “Expert”
Font Formats:       “WOFF”
                    “WOFF2”
Advanced Options:   “Font Name Suffix” = -webfont

For detailed recommended settings, see the plugin Upload options screen.

Filenames must follow the proper naming convention: $family$variant-webfont.$filetype.

$family
The font family base name without style. Case-insensitive. May contain letters, numerals, and underscores but no hyphens or spaces.
$variant
The font style. Can be weight, style, or a combination of both. Case-sensitive.
-webfont
Mandatory suffix. Append to $variant.
$filetype
The file type, i.e., “woff” or “woff2”.

Example: for the bold weight italic style of Times New Roman, rename the files to timesnewroman-boldItalic-webfont.woff and timesnewroman-boldItalic-webfont.woff2.

Allowed weights and styles and their CSS mappings are:

  • regular | normal (maps to 400)
  • italic (maps to 400)
  • boldItalic (maps to 700)

For small-caps support and extended font-weight support, please upgrade to WP FOFT Loader PRO.

This plugin supports 1?–?4 font families. For example, you might have a display font for headings, a serif-font for body text, a sans-serif font for UI elements, such as navigation labels, and a monospaced font for tabular data and code examples.

Subset

Upload up to 4 small, subsetted fonts. For each font, upload a WOFF & WOFF2 file (for a total of up to 8 files). Each font will act as a placeholder until the full fonts load.

Filenames must follow the proper naming convention: $family-optimized.$filetype.

$family
The font family base name without style. Case-insensitive. May contain letters, numerals, and underscores but no hyphens or spaces. Each $family base name should match the name used for the matching font uploaded on the previous upload screen.
-optimized
Mandatory suffix. Append to $family.
$filetype
The file type, i.e., “woff” or “woff2”.

Example: If you uploaded timesnewroman-regular-webfont.woff and timesnewroman-regular-webfont.woff2 as your body font on the previous screen, name the subsetted versions timesnewroman-optimized.woff and timesnewroman-optimized.woff2 respectively.

To subset and encode your fonts, we recommend you use Font Squirrel’s Webfont Generator. Mandatory Font Squirrel settings are:

Select “Expert”
Font Formats:           “WOFF”
                        “WOFF2”
Fix Missing Glyphs:     None
Subsetting:             “Custom Subsetting” with the Unicode Ranges 0065-0041-005A,0061-007A
                        Leave everything else unchecked
OpenType Features:      None
OpenType Flattening:    None
CSS:                    Leave unchecked
Advanced Options:       “Font Name Suffix” = -optimized

For detailed recommended settings, see the plugin Subset options screen.

CSS

@import rules are automatically handled by this plugin. You may manually inline your font-related CSS in the document <head> here. Place rules pertaining only to the font-family, font-weight, font-style, and font-variation properties here.

Plugin CSS

The plugin loads some CSS by default. You may disable it from this screen.

Font Display

The plugin uses font-display: swap by default. You can override the font-display property here.

CSS Stage 1

Declarations placed in this field will load subsetted fonts as placeholders while the full fonts load.

  • Use only the family name followed by Subset (case-sensitive)
  • Family names must match the names you input on the “Subset” screen.
  • All declarations must start with the fonts-stage-1 class

See the Documentation screen to view the Stage 1 CSS that this plugin loads by default.

Incorrect:

.nav-primary { // Missing class: .fonts-stage-1
  font-family: latoSubset, sans-serif;
}

.fonts-stage-1 #footer-secondary {
  font-family: lato, san-serif; // Missing “Subset” suffix
}

.fonts-stage-1 div.callout {
  font-family: latoSubset, san-serif;
  font-size: 1rem; // “font-family,” “font-weight,” “font-style,”
                   // and “font-variant” rules only
}

.fonts-stage-1 div.callout {
  font-family: latosubset, san-serif; // “Subset” suffix is case-sensitive
}

Correct:

.fonts-stage-1 .nav-primary {
  font-family: latoSubset, sans-serif;
}

CSS Stage 2

  • Use only the family name
  • Family names must match the file names for the fonts you uploaded on the “Upload” screen.
  • Omit weights and styles from the font name
  • All declarations must start with the fonts-stage-2 class
  • For best performance, please minify your CSS before pasting it into the form.

See the Documentation screen to view the Stage 2 CSS that this plugin loads by default.

Incorrect:

tbody { // Missing class: .fonts-stage-2
  font-family: lato, Corbel, "Lucida Grande", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fonts-stage-2 span.bolder {
  font-family: lato-bold, Corbel, "Lucida Grande", sans-serif; // Don’t include style in font name.
  // Better yet, omit declaration altogether.
  font-weight: 700;
}

.fonts-stage-2 div.callout {
  font-family: lato-regular, Corbel, "Lucida Grande", san-serif;
  font-size: 1rem; // “font-family,” “font-weight,” “font-style,”
                   // and “font-variant” rules only
}

Correct:

.fonts-stage-2 div.callout {
  font-family: lato, Corbel, "Lucida Grande", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fonts-stage-2 div.callout {
  // No need to redeclare the font-family — all weights map to a single family name
  font-weight: 700; // This will use the lato-bold font
}

For best performance, please minify your CSS before pasting it into the form.

Font Stacks

Change the default font fallbacks in case your custom fonts don’t load. Don’t include the names of your default custom fonts here.

Further Documentation

See the Documentation screen to view the CSS this plugin loads by default and to view video tutorials.

Translations

  • English: Default language, always included

Would you like to help translate WP FOFT Loader into your own language? You can do that here!

Dependencies

This plugin includes these third-party libraries in its package.

Screenshots

  • Uploads screen: upload your custom web fonts here
  • Optimize screen: tells fontobserver.js which fonts to load for stage 1
  • Base64 screen: inlines Base64 data URI for subsetted stage 1 fonts
  • CSS screen: all font-related CSS goes here so it can be inlined.
  • Font Stacks screen: sets the default font stacks
  • Documentation (1): Information about the CSS that the plugin loads by default

Installation

USING THE WordPress DASHBOARD

  1. Navigate to “Add New” in the plugins dashboard
  2. Search for “WP FOFT Loader”
  3. Click “Install Now”
  4. Activate the plugin on the Plugin dashboard
  5. Go to Settings -> WP FOFT Loader, upload your fonts, and configure the settings.

UPLOADING IN WordPress DASHBOARD

  1. Click the download button on this and save “wp-foft-loader.zip” to your computer
  2. Navigate to “Add New” in the plugins dashboard
  3. Navigate to the “Upload” area
  4. Select “wp-foft-loader.zip” from your computer
  5. Click “Install Now”
  6. Activate the plugin in the Plugin dashboard
  7. Go to Settings -> WP FOFT Loader, upload your fonts, and configure the settings.

USING FTP

  1. Download the WP FOFT Loader ZIP file
  2. Extract the WP FOFT Loader ZIP file to your computer
  3. Upload the “wp-foft-loader” directory to the /wp-content/plugins/ directory
  4. Activate the plugin in the Plugin dashboard
  5. Go to Settings -> WP FOFT Loader, upload your fonts, and configure the settings.

UPGRADING TO WP FOFT LOADER PRO

  1. Go to Settings -> WP FOFT Loader -> Upgrade
  2. Fill out the payment form and submit
  3. Your license key will automatically be entered

DOWNLOAD FROM GITHUB

  1. Download the plugin via https://github.com/seezee/WP-FOFT-Loader
  2. Follow the directions for using FTP

FAQ

What is the plugin for?

This plugin implements and automates Zach Leatherman’s Critical FOFT with preload, with a polyfill fallback emulating font-display: optional. According to a tweet from Mr. Leatherman, this technique is the best compromise between font speed loading and a positive user experience.

How may I help improve this plugin?

I’d love to hear your feedback. In particular, tell me about your experience configuring the plugin. Are the instructions clear? Do I need to reword them? Did I leave out something crucial? You get the drift.

I’d like to do more

I’m looking for collaborators to improve the code. If you are an experienced WordPress programmer, hit me up!

I’d like to do even more

Feel free to send a donation to my Paypal account. Or buy me a beer if you’re in town.

Reviews

There are no reviews for this plugin.

Contributors & Developers

“WP FOFT Loader” is open source software. The following people have contributed to this plugin.

Contributors

Translate “WP FOFT Loader” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

2.1.37

  • 2025-01-27
  • Tested up to WordPress 6.7.1
  • Update Freemius SDK

2.1.36

  • 2024-10-23
  • Tested up to WordPress 6.6.2
  • Update Freemius SDK

2.1.35

  • 2024-08-29
  • Tested up to WordPress 6.6.1

2.1.34

  • 2024-05-07
  • Tested up to WordPress 6.5.3

2.1.33

  • 2024-05-02
  • Tested up to WordPress 6.5.2
  • BUGFIX: Cast variables to integers to avoid precision error in PHP 8.3
  • Update Freemius SDK

2.1.32

  • 2023-12-21
  • Tested up to WordPress 6.4.2

2.1.31

  • 2023-11-20
  • Tested up to WordPress 6.4.11

2.1.30

  • 2023-08-28
  • Tested up to WordPress 6.3
  • Freemius SDK update to 2.5.11

2.1.29

  • 2023-07-05
  • Freemius SDK update to 2.5.10

2.1.28

  • 2023-04-21
  • Tested up to WordPress 6.2

2.1.27

  • 2022-11-23
  • Tested up to WordPress 6.1.1

2.1.26

  • 2022-07-24
  • Tested up to WordPress 6.0.1

2.1.25

  • 2022-05-27
  • Tested up to WordPress 6.0.0

2.1.24

  • 2022-05-17
  • Added type attribute to style tag

2.1.23

  • 2022-04-05
  • Tested up to WordPres 5.9.3

2.1.22

  • 2022-03-11
  • Tested up to WordPres 5.9.2

2.1.21

  • 2022-02-24
  • Security Fix

2.1.20

  • 2022-02-22
  • Tested up to WordPress 5.9.1

2.1.19

  • 2022-02-10
  • Updated to Fontawesome 6.0.0
  • Don’t add SRI hash to fallback scripts if external scripts don’t load

2.1.18

  • 2022-01-26
  • Tested up to WordPress 5.9

2.1.17

  • 2022-01-20
  • Update contact & support URL on plugins page for PRO users

2.1.16

  • 2022-01-10
  • Tested up to WordPress 5.8.3
  • Check for FREE vs. PRO and serve appropriate support URL

2.1.16

  • 2021-11-11
  • Tested up to WordPress 5.8.2

2.1.16

  • 2021-09-09
  • Tested up to WordPress 5.8.1

2.1.13

  • 2021-07-23
  • Tested up to WordPress 5.8
  • Minor changes to README
  • Update documentation in the settings screen

2.1.12

  • 2021-05-20
  • Added short description to README
  • Updated plugin tags
  • Other README changes
  • Updated header in main plugin file

2.1.11

  • 2021-05-13
  • Tested up to WordPress 5.7.2

2.1.10

  • 2021-04-22
  • Tested up to WordPress 5.7.1
  • BUGFIX: Fixed incorrect classname in admin API & unminified settings.js
  • Fixed premium code not being removed from free plugin
  • Generated new .pot file

2.1.9

  • 2021-03-12
  • Tested up to WordPress 5.7

2.1.8

  • 2021-01-19
  • BUGFIX: Fix undefined variable $uploadmessage
  • Update to Fontawesome 5.15.2

2.1.7

  • 2021-01-18
  • BUGFIX: Fix checklink() naming collision

2.1.6

  • 2021-01-18
  • Provide fallback for external Fontawesome script per WordPress standards

2.1.5

  • 2021-01-08
  • Tested up to 5.6
  • BUGFIX: Restored missing upload button on plugin main page
  • Reformatted and updated code to meet WordPress coding standards

2.1.4

  • 2020-10-08
  • Tested up to 5.5.3
  • Update FREEMIUS SDK to v.2.4.1
  • Use Dashicons coffee glyph instead of FontAwesome coffee glyph in plugin meta
  • Corrected and improved usage examples

2.1.3

  • 2020-09-30
  • BUGFIX: prior release contained an undefined variable and a typo’d function name, causing a fatal error in the FREE plugin

2.1.2

  • 2020-09-30
  • SECURITY FIX: escape or sanitize all translatable strings
  • (PRO only) Remove deprecated custom message from AreYouSure.js
  • Minor copy improvements
  • Other minor fixes

2.1.1

  • 2020-09-27
  • BUGFIX: (FREE version only) Fix missing variables in class-wp-foft-loader-settings.php

2.1.0

  • 2020-09-27
  • BUGFIX: Restore ajax for form submissions
  • BUGFIX: Restore missing form reset button
  • Refactor i18n

2.0.37

  • 2020-09-02
  • BUGFIX: Fix missing offset in class-wp-foft-loader-settings.php
  • Remove unused JS files from FREE version
  • Tested up to v5.5.1

2.0.36

  • 2020-06-17
  • BUGFIX: Fix missing Fontawesome glyphs on admin settings page

2.0.35

  • 2020-06-16
  • Tested up to 5.4.2

2.0.34

  • 2020-04-30
  • Tested up to 5.4.1

2.0.33

  • 2020-04-21
  • Update Fontawesome library
  • Correct typo in LICENSE

2.0.32

  • 2020-04-01
  • Tested up to WordPress 5.4
  • Remove surrounding underscores in plugin constants per WordPress coding standards

2.0.31

  • 2020-01-01
  • BUGFIX: change assigment operators to comparisons in class-wp-foft-loader.php & class-wp-foft-loader-ratings.php

2.0.30

  • 2019-12-20
  • Add option to keep database options on uninstall in case of upgrading to PRO version

2.0.29

  • 2019-12-18
  • MINOR BUGFIX: Fix missing coffee cup icon in plugin meta

2.0.28

  • 2019-12-09
  • BUGFIX: Fix CORS policy error
  • Add translation strings for plugin meta

2.0.27

  • 2019-12-08
  • BUGFIX: Fix reset form not displaying
  • BUGFIX: Check for NULL tab before displaying reset form
  • Use define() instead of const to define globals
  • Check if globals are already set & show error message if they are
  • Refactor Freemius checks: concatenate instead of nesting, use if … else instead of additional if statement

2.0.26

  • 2019-12-06
  • BUGFIX: Fix AJAX not firing on save
  • Fixed missing space in success & error admin messages on save
  • Renamed Font Awesome scripts & modified classname to avoid collisions with other themes & plugins
  • Load main Font Awesome script from CDN

2.0.25

  • 2019-12-03
  • Improvements to configuration instructions on upload & subset screens

2.0.24

  • 2019-12-03
  • Include unminified scripts in assets to aid debugging

2.0.23

  • 2019-12-02
  • BUGFIX: fix broken path for fallback.min.js

2.0.22

  • 2019-12-02
  • BUGFIX: fix improper Freemius filter in wp-foft-loader.php
  • BUGFIX: fix path error that prevents one of the optimized fonts from loading
  • Add font-display property to subsetted font declaration

2.0.21

  • 2019-11-29
  • BUGFIX: Fix update success notice showing if not updated

2.0.20

  • 2019-11-29
  • Fixed missing spaces to upgrade success notice v2.0.17 – v2.0.19

2.0.19

  • 2019-11-29
  • BUGFIX: moved wpfl_activation() below wpfl_check_version() so they fire in correct order
  • Added get_option() check for FALSE in wpfl_check_version()

2.0.19

  • 2019-11-29
  • BUGFIX: corrected version check error

2.0.17

  • 2019-11-29
  • Add aria-label to meta links
  • Improved URL sanitization with esc_url()
  • Some internationalization fixes
  • Regenerate .POT file
  • Tweaks to ratings microcopy

2.0.16

  • 2019-11-29
  • Change settings page slug to wp-foft-loader
  • Add class-wp-foft-loader-ratings.php
  • Additional capability & pagenow() checks

2.0.15

  • 2019-11-25
  • BUGFIX: proper check for whether options are set in class-wp-foft-loader-jsvars.php
  • BUGFIX: prevent loading of inline Font Face Observer JS until user uploads at least one font & sets at least one option on main screen

2.0.14

  • 2019-11-25
  • BUGFIX: fix undefined variable $promises in class-wp-foft-loader-head.php

2.0.13

  • 2019-11-25
  • BUGFIX: change default options from empty to NULL to avoid missing font in Javascript font preload
  • Minor admin CSS changes
  • Minor revision to descriptive text on settings page
  • POT file updated

2.0.12

  • 2019-11-25
  • Fix missing fontawesome glyphs in plugins settings page main heading

2.0.11

  • 2019-11-24
  • BUGFIX: Fix mixed content error in file upload path

2.0.10

  • 2019-11-24
  • BUGFIX: use array_pad() to finally fix undefined offset in class-wp-foft-loader-settings.php

2.0.9

  • 2019-11-24
  • BUGFIX: fix more undefined offsets
  • BUGFIX: change “$” to “jQuery” in “ays-beforeunload-shim.min.js”

2.0.8

  • 2019-11-23
  • Sanitize variables jsObs & jsLoad with wp_json_encode()
  • BUGFIX: replace all instances of undefined variable $version with constant WPFL_VERSION
  • BUGFIX: fix more undefined variables & offsets
  • BUGFIX: fix constant referring to wrong directory path

2.0.7

  • 2019-11-22
  • BUGFIXES: Check for existence of variables and arrays & fix undefined offsets

2.0.6

  • 2019-11-19
  • Move HTMLPurifier & CSSTidy to vendor directory
  • Fix “Buy the Developer a Coffee” link in plugin meta
  • Add author & plugin URIs to readme

2.0.5

  • 2019-11-15
  • Tested up to WordPress 5.3

2.0.4

  • 2019-11-12
  • BUGFIX: fixed improper Freemius “if” statements
  • BUGFIX: plugin no longer fails to uninstall
  • BUGFIX: plugin now deletes options properly on uninstall
  • Added new Admin messages for new installs & updates
  • Added WPFL_BASE & WPFL_VERSION constants & replaced limited-scope variables
  • New PRO feature: finer-grained control over default CSS output
  • New PRO feature: ability to restore plugin defaults

2.0.3

  • 2019-11-07
  • Improved support for small-caps in PRO version
  • Warn on change without saving PRO version only
  • Added admin messages after plugin activation or update
  • Auto-disactivate FREE plugin when activating PRO version
  • Fix README typos & formatting
  • Remove out-of-date README info (translators)
  • Add version check in wp_options table

2.0.2

  • 2019-11-05
  • Moved support for extended font weights and small-caps to PRO plugin
  • Integrated FREEMIUS code for PRO plugin
  • Eliminated redundant output if user uploads fewer than 4 fonts
  • Changed font declarations to auto-populated select
  • Moved font declarations to plugin settings tab
  • Use template literals in class-wp-foft-loader-jsvars.php
  • Ajaxify admin messages
  • Prepend random exclamations to admin messages
  • Update HTMLPurifier to v4.12.0
  • Update CSSTidy to v1.7.1
  • Removed out-of-date translation files

2.0.1

  • 2019-10-30
  • IMPORTANT Versions >= 2.0.0 and up introduce breaking changes from versions <= 1.0.47
  • Users upgrading from v1.x.x will need to visit the “Subset” screen and configure subsetted fonts
  • Fixed error in class-wp-foft-loader-jsvars

2.0.0

  • 2019-10-30
  • IMPORTANT This is a major update with breaking changes
  • Users upgrading from v1.x.x will need to visit the “Subset” screen and configure subsetted fonts
  • Move from “Critical FOFT with Data URI” to “Critical FOFT with preload, with a polyfill fallback emulating font-display”

1.0.47

  • 2019-10-16
  • Tested up to WordPress 1.0.46

1.0.46

  • 2019-09-26
  • Fix undefined offset 0
  • Fix undefined index placeholder

1.0.45

  • 2019-09-26
  • Remove undefined variable $parent from class mimes
  • Add variable $plugin to class meta

1.0.44

  • 2019-09-25
  • Add links to plugin meta

1.0.43

  • 2019-09-25
  • Update plugin description in main file

1.0.42

  • 2019-09-25
  • Add samp tag to default CSS

1.0.41

  • 2019-09-25
  • Add kbd tag to default CSS

1.0.40

  • 2019-09-12
  • Remove unused dev code from HTMLPurifier & CSSTidy

1.0.39

  • 2019-09-08
  • Security update: Fix XSS double-quoted attribute flaw in class-wp-foft-loader-settings.php

1.0.38

  • 2019-09-05
  • Remove admin script enqueuing since we’re not using it and it throws a 404

1.0.37

  • 2012-08-19
  • Added package.json
  • Minor updates to readme.txt & readme.md

1.0.36

  • 2019-08.13
  • Fixed uploader bug. WOFF & WOFF2 files now permitted & upload to correct folder

1.0.35

  • 2019-07-31
  • Update CSSTidy library to v1.7.0

1.0.34

  • 2019-07-29
  • Modifed HTMLTidy config in class-wp-foft-loader-head.php

1.0.33

  • 2019-07-07
  • Updated .pot file
  • Replaced incorrect Dutch .po & .mo

1.0.32

  • 2019-07-05
  • BUGFIX in class-wp-foft-loader-settings.php
  • Better installation instructions

1.0.31

  • 2019-07-04
  • More sanitization
  • Pass PHPCS/WPCS checks
  • Remove unused metabox code

1.0.30

  • 2019-06-27
  • Fixed incorrect Dutch .po filenames

1.0.29

  • 2019-06-28
  • More sanitizing
  • Changes to README content
  • Corrected some errors in Dutch translation

1.0.28

  • 2019-06-27
  • Create correct icon sizes for WP Plugin Repository
  • Fix readme.txt formatting
  • Changes to README content

1.0.27

  • 2019-06-27
  • Code formatting now meets WordPress standards
  • Strict type checking on comparisons
  • Use Yoda case where appropriate
  • Convert unnecessary concatenations to single strings
  • Added Dutch translation

1.0.26

  • 2019-06-25
  • Minor bugfix (fixed typo in code)

1.0.25

  • 2019-06-21
  • Additional NULL value checks before outputting styles
  • Other code improvements
  • Numerous documentation improvements
  • Added first two video tutorials (more to come)

1.0.24

  • 2019-06-19
  • BUGFIXes: fixed typos in output CSS
  • Separated Stage 1 and Stage 2 CSS in CSS screen
  • Added Documentation screen
  • Major edits to body copy
  • Removed internationalization where it’s not needed

1.0.23

  • 2019-06-18
  • Use HTMLPurifier & CSSTidy to sanitize user input custom CSS

1.0.22

  • 2019-06-17
  • Improve introductory microcopy on Settings page
  • BUGFIX: fixed incorrect textdomain

1.0.21

  • 2019-06-17
  • Update custom CSS output in /includes/class-wp-foft-loader-head.php (convert &lt; back to > child selector after sanitizing)
  • Update default CSS output in /includes/class-wp-foft-loader-head.php (don’t escape >)

1.0.20

  • 2019-06-16
  • Add font-display option to CSS Settings screen
  • Update .pot, .po, & .mo language files

1.0.19

  • 2019-06-16
  • Improve file-naming convention documentation

1.0.18

  • 2019-06-16
  • Improve file-naming convention documentation
  • Use definition list for Font Squirrel suggested settings
  • Open media uploader in Upload view instead of Library view
  • Trim unused code from class-wp-foft-loader-admin-api.php
  • Update .pot, .po, & .mo language files

1.0.17

  • 2019-06-15
  • Reverted recommended Em Square Value setting

1.0.16

  • 2019-06-15
  • Corrected font weight mapping in README & upload instructions
  • Updated recommended Font Squirrel Generator settings

1.0.15

  • 2019-06-14
  • Added missing change to changelog & re-assigned version numbers

1.0.14

  • 2019-06-14
  • Added plugin banner & icon

1.0.13

  • 2019-06-14
  • Corrected GPL License info

1.0.12

  • 2019-06-14
  • Corrected version numbering error
  • Fixed typo in README description

1.0.11

  • 2019-06-14
  • Corrected license URI

1.0.10

  • 2019-06-14
  • Upgraded GNU Public License from v2 to v3

1.0.9

  • 2019-06-14
  • Corrected Contributers username

1.0.8

  • 2019-06-14
  • Add Requires PHP to README

1.0.7

  • 2019-06-14
  • Add screenshots

1.0.6

  • 2019-06-14
  • Create readme.txt
  • Add comments to readme.md

1.0.5

  • 2019-06-14
  • Upgrade license from GNU GPL 2 to GNU GPL 3
  • Fix Undefined index: placeholder in class-wp-foft-loader-admin-api.php
  • Add acknowledgement to README

1.0.4

  • 2019-06-13
  • README formatting fix

1.0.3

  • 2019-06-13
  • Further README formatting improvements

1.0.2

  • 2019-06-13
  • Fixed README formatting & added Pros & Cons to FAQ

1.0.1

  • 2019-06-13
  • Removed trailing comma if font stack is not set

1.0

  • 2019-06-13
  • Initial release
VIP777 login Philippines Ok2bet PRIZEPH online casino Mnl168 legit PHMAYA casino Login Register Jilimacao review Jl777 slot login 90jili 38 1xBet promo code Jili22 NEW com register Agila Club casino Ubet95 WINJILI ph login WINJILI login register Super jili168 login Panalo meaning VIP JILI login registration AGG777 login app 777 10 jili casino Jili168 register Philippines APALDO Casino link Weekph 50JILI APP Jilievo xyz PH365 casino app 18JL login password Galaxy88casino com login superph.com casino 49jili login register 58jili JOYJILI apk Jili365 asia ORION88 LOGIN We1win withdrawal FF777 casino login Register Jiligo88 philippines 7777pub login register Mwgooddomain login SLOTSGO login Philippines Jili188 App Login Jili slot 777 Jili88ph net Login JILIMACAO link Download Gcash jili login GG777 download Plot777 app download VIPPH register Peso63 jili 365.vip login Ttjl casino link download Super Jili 4 FC178 casino - 777 slot games JILIMACAO Philippines S888 register voslot LOVE jili777 DOWNLOAD FK777 Jili188 app CG777 app 188 jili register 5JILI login App Download Pkjili login Phdream Svip slot Abcjili6 App Fk777 vip download Jili888 register 49jili VIPPH register Phmacao co super Taya777 link Pogo88 real money Top777 app VIP777 slot login PHMACAO 777 login APALDO Casino link Phjili login Yaman88 promo code ME777 slot One sabong 888 login password PHMAYA casino Login Register tg777 customer service 24/7 Pogibet slot Taya777 org login register 1xBet live Acegame888 OKBet registration JILIASIA Promotion Nice88 voucher code AgilaClub Gaming Mnl168 link Ubet95 free 50 PHMAYA casino login JLBET 08 Pb777 download 59superph Nice88 bet sign up bonus Jiliyes SG777 download apk bet88.ph login JILIPARK casino login Register Philippines PHMAYA APK CC6 casino login register mobile PHMACAO com download MWPLAY app JILIPARK Download Jili999 register link download Mnl646 login Labet8888 download 30jili jilievo.com login Jollibee777 open now LOVEJILI 11 18JL casino login register Philippines JILIKO register Philippines login Jililuck 22 WJPESO casino PHMAYA casino login Jili777 login register Philippines Ttjl casino link download W888 login Register Galaxy88casino com login OKBet legit tg777 customer service 24/7 Register ROYAL888 Plot777 login Philippines BigWin Casino real money PHLOVE 18JL PH 18JL casino login register Philippines SG777 Pro Taya777 pilipinong sariling casino Jiligames app MNL168 free bonus YesJili Casino Login 100 Jili casino no deposit bonus FC178 casino free 100 Mwcbet Download Jili888 login Gcash jili download JILIMACAO 123 Royal888 vip 107 Nice888 casino login Register FB777 link VIPPH app download PHJOIN 25 Ubet95 legit phcash.vip log in Rrrbet Jilino1 games member deposit category S888 live login FF777 download FC777 VIP APK ME777 slot Peso 63 online casino OKGames app Joyjili customer service superph.com casino FB777 Pro Rbet456 PH cash online casino Okbet Legit login taruhan77 11 VIPPH 777Taya win app Gogo jili 777 Plot777 login register Bet99 app download Jili8989 NN777 VIP JP7 fuel Wjevo777 download Jilibet donnalyn login Register Bossjili ph download 58jili login registration YE7 login register FC777 new link login 63win register Crown89 JILI no 1 app Jili365 asia JLBET Casino 77PH fun Jili777 download APK Jili8 com log in CC6 casino login register mobile ph365.com promotion phjoin.com login register 77PH VIP Login download Phdream live chat Jlslot2 Me777 download Xojili legit PLDT 777 casino login Super Jili Ace Phdream 44 login Win888 casino JP7 Bp17 casino login TTJL Casino register FB777 slot casino Jili games online real money phjoin.com login register BET99 careers ORION88 LOGIN Plot777 login Philippines Labet8888 login JILI Official Pogibet app download PH777 casino register LOVEJILI app Phvip casino VIP jili casino login PHMACAO app 777pnl legit YE7 casino online Okbet download CC6 bet app 63win club Osm Jili GCash LOVEJILI 11 Www jililive com log in Jili58 casino SuperAce88 JiliLuck Login Acegame 999 777pnl promo code MWPLAY good domain login Philippines Pogo88 app Bet casino login Superph98 18jl app download BET999 App EZJILI gg 50JILI VIP login registration Jilino1 new site pogibet.com casino Jili Games try out Gogojili legit 1xBet Aviator WINJILI ph login Jili168 register How to play Jili in GCash 777pnl PHDream register login JILISM slot casino apk FB777 c0m login EZJILI Telegram MWCASH88 APP download Jili88 vip03 APaldo download 1xBet 58JL Casino 58jl login register Jili scatter gcash OKJL slot jili22.net register login 10phginto APaldo 888 app download 1xBet live FC178 Voucher Code 58jl Jili888 ph Login 365 Jili casino login no deposit bonus JP7 VIP login PHBET Login registration 58jili login registration VVJL online Casino Club app download Jili77 login register Jili88 ph com download KKJILI casino WJ peso app Slot VIP777 BigWin69 app Download Nice88 bet Suhagame philippines Jiliapp Login register Qqjili5 Gogo jili helens ABJILI Casino OKJL download 1xBet login mobile Pogibet 888 777 game Okgames casino login Acegame888 Bet86 promotion Winph99 com m home login JP7 VIP login 20phginto VIPPH register KKJILI casino OKJILI casino Plot777 app download NN777 register bossphl Li789 login Jiligo88 app Mwcbet Download Betjilivip Https www BETSO88 ph 30jili Https www BETSO88 ph Jilievo Club Jili888 register Jili777 download APK JILI77 app download New member register free 100 in GCash 2024 Royal888casino net vip JOLIBET withdrawal MW play casino Jili365 login FB777 Pro Gold JILI Bet99 registration 55BMW red envelope Bet199 login philippines JILI188 casino login register download Phjoin legit or not Bigwin 777 Bigwin pro Apaldo PH pinasgame JILIPARK Login registration JiliApp ph04 Ph143 Jili168 login app Philippines MW Play online casino APK 77tbet register 8k8t Bigwin casino YE7 Download App Ph365 download apk Acejili Ph888 login S888 juan login 63win withdrawal Okbet cc labet 8888.com login password Mwbet188 com login register Philippines MNL168 net login registration kkjili.com download Jili888 Login registration Abc Jili com Download JILIPARK casino login Register Download AbcJili customer service live777. casino Jilievo casino jilievo APP live casino slots jilievo vip Jolibet legit PH888 login Register 888php register 55BMW win Mwbet188 com login register Philippines AbcJili customer service Jili88 ph com app 200Jili App MAXJILI casino ROYAL888 deposit mi777 Jili games free 100 ACEGAME Login Register Jilibet donnalyn login Voslot register Jilino1 live casino 18jl login app apk JILI Vip777 login Phtaya login Super Ace casino login Bigwin 777 Ubet95 free 190 superph.com casino Jili22 NEW com register SG777 win Wjpeso Logo 1xBet login mobile Jili88 casino login register Philippines sign up Okbet cc Agg777 slot login Phv888 login P88jili download jiliapp.com- 777 club Fish game online real money One sabong 888 login password QQJili Taya365 slot mnl168.net login Taya365 download Yes Jili Casino PHMACAO APK free download 365 casino login Bigwin 29 JILISM slot casino apk Wow88 jili777.com ph 888php login 49jili VIP Jilino1 legit SG777 slot Fish game online real money Voslot free 100 18jl login app apk OKJL app Jili22 NEW com register Nice88 free 120 register no deposit bonus Sugal777 app download 288jili PHJOIN VIP com Register Jl77 Casino login KKjili com login Lovejili philippines Pogo88 casino SLOTSGO VIP login password Jili22 net register login password Winph 8 we1win 100 Jili slot 777pnl promo code Sg77701 Bet88 download for Android PH365 casino Royal Club login Jili88 casino login register MWPLAY login register Jilibay Promotion 7SJILI com Register FC777 casino link download Royal meaning in relationship OKBET88 AbcJili customer service 777ph VIP BOSS JILI login Register 200Jili App KKJILI casino login register maxjili Mwcbet legit JILIASIA 50 login Milyon88 com casino login 8k8app17 Royal slot Login Phmacao rest 338 SLOTSGO Ph888 login PHGINTO com login YY777 app Phdream register Jili22 net register login password Lucky Win888 Jiligames API Agila club VIP 77PH VIP Login download Acegame888 register PHMAYA Download Jili88 online casino 7XM Lovejili philippines 63win register Jilimax VOSLOT 777 login 18JL Casino Login Register JILIASIA 50 login 50JILI VIP login registration 7XM com PH Nice888 casino login Register 58jl Jili168 casino login register download Timeph philippines 90jilievo Jili88 casino login register OKBet legit JILI slot game download Bet99 promo code 58jili app 55BMW com PH login password KKjili casino login bet999 How to play Jili in GCash BigWin69 app Download OKJL Milyon88 com casino login phdream 888php register Ph888 PH777 registration bonus JLBET Asia LOVEJILI download Royal Casino login 646 ph login Labet8888 review JLBET Casino Jili888 ph Login Wjpeso Wins JILIMACAO 666 Jiliplay login register JILIAPP com login Download JiliLuck download WIN888 PH JL777 app Voslot777 legit Pkjili login 20jili casino Jolibet login registration Phjoin legit or not Milyon88 com casino register JILI apps download 88jili login register Jili 365 Login register download 11phginto Jili777 vip login Ta777 casino online Swertegames Taya365 download 777PNL online Casino login Mi777 join panalo 123 JILI slot 18jili link Panalo lyrics Jiliplay login philippines yaman88 Bet88 login Jili888 Login registration FF777 TV Ok2bet app Pogibet casino philippines Www jilino1 club WOW JILI secret code AB JILI Jili168 online casino BET99 careers Go88 slot login JILI Vip777 login CG777 Casino link OKBet GCash www.50 jili.com login WINJILI download Lucky bet99 Acegame888 77ph com Login password ACEGAME Login Register ACEGAME casino Swerte88 login password Wj slots casino APALDO Casino Phjoin slot JLBET com JLBET ph Taya777 org login 49jili slot Svip slot Jili77 download APK 200jiliclub Bet199 philippines Jili888 Login registration 88jili withdrawal phjoin.com login register Swerte88 login registration Voslot777 legit Superph11 AAA JILI app download Www jililive com log in VIP777 Casino login download Jili77 download APK Jilibet donnalyn login Register JILICC sign up Pogibet app download www.mwplay888.com download apk Jili68 Jililuck App Download APK Yy777 apk mod Jili77 vipph.com login labet8888.com app Phdream live chat Ph646 login register mobile 7777pub download Jolibet Fortune Tree 90JILI app 18JL login Philippines JLSLOT login password 50JILI fun m.nn777 login 88jili withdrawal PH Cash Casino APK 888PHP Casino LINK Boss jili app download Jili999 login register FB777 download APK Free 100 promotion JILIPARK Download VIP PH casino JILIHOT ALLIN88 login 8K8 com login PHMAYA casino login 58jili withdrawal Ubet95 free 100 no deposit bonus KKJILI online casino M GG777 100jili APP JILI888 slot download PHBET88 Jili Games demo 1xBet OKJL Casino Login Nice888 casino login Register Betso88 App download APK VIP777 app Gcash jili register 1xBet registration 58jili withdrawal Jili63 Suhagame23 218 SLOTSGO AGG777 login Philippines Bay888 login JILIVIP 83444 PHCASH com casino login Jilievo 666 Jili 365 VIP register PHMAYA link PH cash VIP login register Yaman88 casino JP7 VIP We1Win download free rbet.win apk Jili168 casino login register download Milyon88 com casino register 18JL login app 88jili withdrawal AAA Casino jilibet.com register Winjili55 UG777 login app PH777 download Jili365 bet login app Osm Jili GCash 77tbet philippines GI Casino login philippines 88jili login FC178 casino free 100 SG777 Com Login registration Nice88 free 100 Oxjili Royal777 Top777 login FB777 live 200jili login Gogojili legit Yes Jili com login phcash.vip casino Sugal777 app download 58JL app Login Panalo login JILI games APK Lucky99 Slot login Jili scatter gcash 7XM APP download FB JILI casino login download PHMACAO app ROYAL888 Link Alternatif ACEPH Casino - Link 55bmw.com casino Timeph app Osm Jili GCash M GG777 Ubet95 login Jiligo88 CG777 Casino Philippines Tayabet login Boss jili app download YY777 app download Nice88 free 120 register no deposit bonus Bossjili7 XOJILI login 68 PHCASH login ezjili.com download apk Jili 365 VIP APK Milyon88 pro Jili88 casino login register download Jili online casino AgilaPlay Jili scatter gcash 7777pub login CC6 app bonus JK4 online PHJOIN casino Joyjili login register 22phmaya 5JILI Casino login register Betso88 VIP Winph 8 Phmacao rest JILI Slot game download free s888.live legit APALDO Casino link Plot 777 casino login register Philippines Ph646wincom Jili168 login app Philippines KKJILI casino Apaldo PH Phdream live chat Slot VIP777 PH888BET 22 phginto 50JILI APP MWPLAY login register Slotph We1Win apk VIP777 slot login Nice88 PRIZEPH online casino Jilipark App 7XM app for Android Jili58 Jili168 free 100 APALDO 888 CASINO login APaldo download Jiliasia8 com slot game phcash.vip casino OKJL Casino Login YY777 live Jili888 register Winjiliph QQ jili casino login registration Abcjili5 NN777 register Phvip casino Taya 365 casino login OKBet app Osm Jili GCash Nice88 free 100 5JILI Casino login register Bet88 app download 5 55bmw vip Jlph11 JILI slot casino login Nice88 bet sign up bonus JILI Slot game download for Android Abc Jili com Download FF777 TV Peso 63 online casino MILYON88 register free 100 7777pub JILIASIA 50 login CC6 online casino latest version Royal Club apk 1xBet login registration CG777 Casino Philippines 1xBet app Mwcbet net login Password LOVEJILI 21 FBJILI Now use Joyjili Promo code JILI188 casino login register download PHMACAO SuperPH login AGG777 login app Peso 63 online casino filiplay Sugal777 app download Galaxy88casino com login EZJILI Telegram JiliApp ph04 Jilino1 com you can now claim your free 88 PHP download 63win Coupon Code PHDream 8 login register Philippines MNL168 website CC6 online casino register login 3jl app download apk Jlph7 TA777 com Login Register password 5jili11 FF777 casino login Register KKJILI casino login register 10 JILI slot game 3JL login app Jili100 APP Winjili55 Milyon88 info Jilino1 VIP login YE7 bet sign up bonus Apaldo games Wj casino app AbcJili win.ph log in Jili22 VIP 204 SG777 Jl77 Casino login YY777 app download Jilimacao Okjl space Wjevo777 download Ubet95 free 100 no deposit bonus PHMAYA APK Xojili legit 77PH bet login Taya365 pilipinong sariling casino LOVEJILI AAAJILI Casino link Jollibee777 How to play mwplay888 18jl app download jilievo.com login password VIP PH casino mnl168.net login JiliLuck download Win2max casino 777PNL download app Ubet Casino Philippines Win888 Login Jili88 casino login register Philippines sign up Bet99 APK 18JL casino Login register Download Naga888 login JLPH login PHMACAO APK free download How to register Milyon88 Royal888ph com login JiliCC entertainment WINJILI customer service PHBET88 Jili888 Login Philippines SG777 slot FBJILI Jili365 bet login app Ubet95 free 100 no deposit bonus Taya 365 casino login LOVEJILI Jili777 free 150 YE7 casino login register download QQJili 58jili login Download S888 sabong Gi77 casino Login taya777 customer service philippines number 24/7 WINJILI customer service Https www wjevo com promocenter promotioncode Nice99 casino login Phdream 44 login Mi777app 777PNL online Casino login phjl.com casino JILILUCK promo code Pogibet 888 login BigWin Casino legit Jolibet app download Jilli pogibet.com casino JP7 VIP login Ug7772 Phjoy JILIMACAO 123 PH143 online casino jili365.bet download PH cash VIP login register Abc Jili Register Mwgooddomain login 58JL Casino link 365 Jili casino login no deposit bonus JILIEVO Casino 777 60win OKGames casino 49jili VIP kkjili.com app JILIPARK casino login Register Philippines Agila Club casino OKGames GCash OKBet casino online S888 juan login Yaman88 log in Winph99 com m home login Jili88 casino login register Winjiliph CG777 Casino LOGIN Register Ubet Casino Philippines Agilaclub review Is 49jili legit ph646 JLBET link JiliCC entertainment Jilicity withdrawal Ta777 casino online Jili777 login register Philippines JP7 coupon code Milyon88 one Ug7772 Jilibet casino 77PH VIP Login download Jili live login 68 PHCASH 7XM APP download Boss jili login MWCASH88 APP download Jilicity login Acegame888 real money LIKE777 JILILUCK app JiliBay Telegram Bet199 login philippines Ph646wincom PHJOIN login OKGames register JILIASIA withdrawal Panalo login 88jili Login Philippines Wjevo777 download phjl.com casino Fcc777 login Labet8888 login JILI8998 casino login PHJL Login password Jilibay Voucher Code 28k8 Casino P88jili download 49jili apps download Fk777city we1win CG777 Casino login no deposit bonus MW play casino FF777 casino login Register Philippines download JILIAPP com login Download Bet199 PHGINTO com login Bet88 bonus Sw888 withdrawal Vvjl666 Jiliapp 777 Login QQ jili login Jilicity download Jili188 login Philippines Timeph philippines Casino Club app download Nice88 bet login registration Bay888 login PH Cash casino download Jiliko777 Nice88 PH 777pnl Jiliplay login register JILI VIP casino cg777 mwcbets.com login Fbjili2 JILIAPP download 7xm login 77jl.com login JILI Slot game download for Android MWPLAY app superph.com casino Nice88 free 120 WJ peso app Jili58 register 3jl app download apk Betso88 link OKGames login free JILIASIA 888 login 58jl login register Jilibet888 68 PHCASH login Jili88ph net register 55BMW Casino app download APK Abc Jili com Download FB777 register login Philippines Jilievo org m home JiliLuck download jlbet.com login register Jp7 casino login 18JL Casino Login Register YE7 casino APK prizeph Boss jili login Royal logo FC178 casino - 777 slot games Taya777 pilipinong sariling casino Ph888 MWPLAY app @Plot777_casino CG777 login BOSS JILI login Register JILI PH646 login Vvjlstore Mi777 casino login Download Okgames redeem code 50JILI VIP login registration Bet88 login AGG777 login Philippines JILIMACAO Yesjili com legit P88jili com login OKBET88 Gold JILI VIP PH casino VIP PH log in bet88.ph legit kkjili.com app JiliLuck Login JILI Vip777 login 63win withdrawal bet999.ph login m.nn777 login 58JL 8k8app17