Files
InContact/inc/classes/inContact/Enqueue.php
2025-03-12 21:49:22 +01:00

29 lines
614 B
PHP

<?php
namespace inContact;
/**
* Klasa Enqueue
*
* @link https://krzysztof-turek.com
*
* @package tylkofotografia.pl
* @version 0.2
*/
class Enqueue {
use Singleton;
function __construct() {
add_action('wp_enqueue_scripts',[ $this, 'enqueueScripts']);
}
public function enqueueScripts() {
global $pluginDirUrl, $pluginPath;
wp_register_style('ContactCss', $pluginDirUrl.'css/inContact.css', [], filemtime( $pluginPath . 'css/inContact.css'), 'all');
wp_enqueue_style('ContactCss');
}
}