D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
vblioqus
/
safa777.info
/
wp-content
/
themes
/
infopediya
/
inc
/
Filename :
register-scripts.php
back
Copy
<?php /* * In this file we will register all the styles and scripts reuired in theme. */ // if (get_site_url() !== "") { // echo("<div><h1 style='color:red;padding:100px;'>The activated theme is not working! </h1> <p><a href=". "'". get_site_url()."/wp-admin'" .">Go to wp-admin</a></p></div>"); // exit(); // } function stylo_register_scripts_styles() { // bootstrap 5 wp_enqueue_style('bootstrap-5', get_template_directory_uri() . '/css/bootstrap/bootstrap.min.css', array()); // bootstrap 5 JS wp_enqueue_script('bootstrap-JS', get_template_directory_uri() . '/js/bootstrap/bootstrap.min.js', array()); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } //Default Styleheet $style_path = get_template_directory() . '/style.css'; wp_enqueue_style('default-css', get_stylesheet_uri(), array(), filemtime($style_path), 'all'); //App css $style_app = get_template_directory() . '/css/app.min.css'; wp_enqueue_style('app-style', get_template_directory_uri() . '/css/app.min.css', array(), filemtime($style_app), 'all'); wp_enqueue_script('ratting-ajax', get_template_directory_uri() . '/inc/submit-ratting-ajax/ajax.js', array('jquery')); wp_localize_script( 'ratting-ajax', 'ratting_ajax_url', array( 'ajax_url'=>admin_url('admin-ajax.php'), ) ); } add_action('wp_enqueue_scripts', 'stylo_register_scripts_styles');