Sindbad~EG File Manager
<?php
namespace ThimPress\Customizer\Modules\Webfonts;
final class Embed {
protected $webfonts;
public function __construct( $webfonts ) {
$this->webfonts = $webfonts;
add_action( 'wp', [ $this, 'init' ], 9 );
}
public function init() {
add_action( 'thim_customizer_dynamic_css', [ $this, 'the_css' ] );
}
public function the_css() {
$url = $this->webfonts->google_fonts_api_v2_link();
if ( empty( $url ) ) {
return;
}
$downloader = new Downloader();
$contents = $downloader->get_styles($url);
if ( $contents ) {
echo wp_strip_all_tags( $contents );
}
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists