/home/silvwabw/public_html/wp-content/themes/taxico/inc/class/class-asset-enqueue.php
<?php
/**
* Block Pattern Class
*
* @author Jegstudio
* @package taxico
*/
namespace Taxico;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Init Class
*
* @package taxico
*/
class Asset_Enqueue {
/**
* Class constructor.
*/
public function __construct() {
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 20 );
add_action( 'enqueue_block_assets', array( $this, 'enqueue_scripts' ) );
add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ), 20 );
}
/**
* Enqueue scripts and styles.
*/
public function enqueue_scripts() {
wp_enqueue_style( 'taxico-style', get_stylesheet_uri(), array(), TAXICO_VERSION );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
/**
* Enqueue admin scripts and styles.
*/
public function admin_scripts() {
}
}