23 lines
422 B
PHP
23 lines
422 B
PHP
<?php
|
|
|
|
namespace App\Admin;
|
|
|
|
class Enqueue
|
|
{
|
|
public function __construct()
|
|
{
|
|
add_action( 'admin_enqueue_scripts', [$this, 'fontawesome']);
|
|
}
|
|
|
|
public function fontawesome()
|
|
{
|
|
wp_enqueue_style(
|
|
'fontawesome',
|
|
'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css',
|
|
false,
|
|
'7.0.1',
|
|
'all'
|
|
);
|
|
}
|
|
}
|