File: /var/www/sites/1250.info/wp-content/themes/blogus/inc/ansar/enqueue.php
<?php function blogus_scripts() {
wp_enqueue_style('bootstrap', get_template_directory_uri() . '/css/bootstrap.css');
wp_style_add_data('bootstrap', 'rtl', 'replace' );
wp_enqueue_style( 'blogus-style', get_stylesheet_uri() );
wp_style_add_data( 'blogus-style', 'rtl', 'replace' );
wp_enqueue_style('blogus-default', get_template_directory_uri() . '/css/colors/default.css');
wp_enqueue_style('all-css',get_template_directory_uri().'/css/all.css');
wp_enqueue_style('dark', get_template_directory_uri() . '/css/colors/dark.css');
wp_enqueue_style('swiper-bundle-css', get_template_directory_uri() . '/css/swiper-bundle.css');
wp_enqueue_style('smartmenus',get_template_directory_uri().'/css/jquery.smartmenus.bootstrap.css');
wp_enqueue_style('animate',get_template_directory_uri().'/css/animate.css');
/* Js script */
wp_enqueue_script( 'blogus-navigation', get_template_directory_uri() . '/js/navigation.js', array('jquery'));
wp_enqueue_script('blogus_bootstrap_script', get_template_directory_uri() . '/js/bootstrap.js', array('jquery'));
wp_enqueue_script('swiper-bundle', get_template_directory_uri() . '/js/swiper-bundle.js', array('jquery'));
wp_enqueue_script('blogus_main-js', get_template_directory_uri() . '/js/main.js' , array('jquery'));
wp_enqueue_script('sticksy-js', get_template_directory_uri() . '/js/sticksy.min.js' , array('jquery'));
wp_enqueue_script('smartmenus-js', get_template_directory_uri() . '/js/jquery.smartmenus.js');
wp_enqueue_script('bootstrap-smartmenus-js', get_template_directory_uri() . '/js/jquery.smartmenus.bootstrap.js' , array('jquery'));
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action('wp_enqueue_scripts', 'blogus_scripts');
function blogus_admin_enqueue( $hook ) {
wp_enqueue_script( 'media-upload' );
wp_enqueue_media();
wp_enqueue_style( 'blogus-admin-style', get_template_directory_uri() . '/css/admin-style.css' );
}
add_action( 'admin_enqueue_scripts', 'blogus_admin_enqueue' );
//Custom Color
function blogus_custom_js() {
wp_enqueue_script('blogus-dark', get_template_directory_uri() . '/js/dark.js' , array('jquery'));
theme_options_color();
}
add_action('wp_footer','blogus_custom_js');
function theme_skin_js() {
$blogus_skin_mode = get_theme_mod('blogus_skin_mode','defaultcolor');
$light_n_dark_toggle = get_theme_mod('blogus_lite_dark_switcher', true);
$header_textcolor = get_theme_mod('header_textcolor', "000");
$header_textcolor_dark_layout = get_theme_mod('header_textcolor_dark_layout', "#fff");
if($light_n_dark_toggle == true){
if($blogus_skin_mode == "defaultcolor") { ?>
<script type="text/javascript">
(function($) {
"use strict";
document.documentElement.setAttribute("data-theme", " ");
document.getElementById("switch").checked = false;
localStorage.setItem("data-theme", '')
})(jQuery);
</script>
<?php
}else{ ?>
<script type="text/javascript">
(function($) {
"use strict";
document.documentElement.setAttribute("data-theme", "dark");
document.getElementById("switch").checked = true;
localStorage.setItem("data-theme", "dark")
})(jQuery);
</script>
<?php }
}else{
if($blogus_skin_mode == "defaultcolor") { ?>
<script type="text/javascript">
(function($) {
"use strict";
document.documentElement.setAttribute("data-theme", " ");
})(jQuery);
</script>
<?php
}else{ ?>
<script type="text/javascript">
(function($) {
"use strict";
document.documentElement.setAttribute("data-theme", "dark");
})(jQuery);
</script>
<?php }
} ?>
<?php
}
add_action('wp_footer','theme_skin_js');
function toggle_color() {
$header_textcolor = get_theme_mod('header_textcolor', "000");
$header_textcolor_dark_layout = get_theme_mod('header_textcolor_dark_layout', "#fff");
$light_n_dark_toggle = get_theme_mod('blogus_lite_dark_switcher', true);
if($light_n_dark_toggle == true) { ?>
<script type="text/javascript">
let theme = localStorage.getItem('data-theme');
const checkbox = document.getElementById("switch");
const changeThemeToDark = () =>{
document.documentElement.setAttribute("data-theme", "dark")
document.getElementById("switch").checked = true;
localStorage.setItem("data-theme", "dark")
//console.log("I give you dark")
document.querySelector(".site-title a").style.color = '<?php echo esc_attr($header_textcolor_dark_layout); ?>';
document.querySelector(".site-description").style.color = '<?php echo esc_attr($header_textcolor_dark_layout); ?>';
// For Responsive
document.querySelector(".m-header .site-title a").style.color = '<?php echo esc_attr($header_textcolor_dark_layout); ?>';
document.querySelector(".m-header .site-description").style.color = '<?php echo esc_attr($header_textcolor_dark_layout); ?>';
}
const changeThemeToLight = () =>{
document.documentElement.setAttribute("data-theme", "")
localStorage.setItem("data-theme", '')
//console.log("I give you light")
document.querySelector(".site-title a").style.color = '#<?php echo esc_attr($header_textcolor); ?>';
document.querySelector(".site-description").style.color = '#<?php echo esc_attr($header_textcolor); ?>';
// For Responsive
document.querySelector(".m-header .site-title a").style.color = '#<?php echo esc_attr($header_textcolor); ?>';
document.querySelector(".m-header .site-description").style.color = '#<?php echo esc_attr($header_textcolor); ?>';
}
if(theme === 'dark'){
changeThemeToDark()
}else{
changeThemeToLight()
}
checkbox.addEventListener('change', ()=> {
let theme = localStorage.getItem('data-theme');
if (theme ==='dark'){
changeThemeToLight()
}else{
changeThemeToDark()
}
});
</script>
<?php }
}
add_action('wp_footer','toggle_color');
//Cusotm colors
function title_tagline_color()
{ $blogus_skin_mode = get_theme_mod('blogus_skin_mode','defaultcolor');
if($blogus_skin_mode == "defaultcolor") {?>
<style>
.site-branding-text p , .site-title a {
color: <?php echo esc_attr(get_theme_mod('header_textcolor')); ?>;
}
.m-header .site-title a, .m-header .site-description {
color: <?php echo esc_attr(get_theme_mod('header_textcolor')); ?>;
}
</style>
<?php
}else{ ?>
<style>
.site-branding-text p , .site-title a{
color: <?php echo esc_attr(get_theme_mod('header_textcolor_dark_layout', "#fff")); ?>;
}
.m-header .site-title a, .m-header .site-description {
color: <?php echo esc_attr(get_theme_mod('header_textcolor_dark_layout', "#fff")); ?>;
}
</style>
<?php } }
add_action('wp_footer','title_tagline_color');
/**
* Fix skip link focus in IE11.
* This does not enqueue the script because it is tiny and because it is only for IE11,
* thus it does not warrant having an entire dedicated blocking script being loaded.
*
* @link https://git.io/vWdr2
*/
function blogus_skip_link_focus_fix() {
// The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`.
?>
<script>
/(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
</script>
<?php
}
add_action( 'wp_print_footer_scripts', 'blogus_skip_link_focus_fix' );
//Footer widget text color
function blogus_footer_text_color()
{
$blogus_footer_text_color = get_theme_mod('blogus_footer_text_color');
if($blogus_footer_text_color)
{ ?>
<style>
footer .bs-widget p, .site-title-footer a, .site-title-footer a:hover, .site-description-footer, .site-description-footer:hover, footer .bs-widget h6, footer .mg_contact_widget .bs-widget h6 {
color: <?php echo esc_attr($blogus_footer_text_color); ?>;
}
</style>
<?php }
$blogus_footer_copy_bg = get_theme_mod('blogus_footer_copy_bg');
if($blogus_footer_copy_bg){ ?>
<style>
footer .bs-footer-copyright {
background: <?php echo esc_attr($blogus_footer_copy_bg); ?>;
}
</style>
<?php }
$blogus_footer_copy_text = get_theme_mod('blogus_footer_copy_text');
if($blogus_footer_copy_text)
{ ?>
<style>
footer .bs-footer-copyright p, footer .bs-footer-copyright a {
color: <?php echo esc_attr($blogus_footer_copy_text); ?>;
}
</style>
<?php } }
add_action('wp_footer','blogus_footer_text_color');
?>
<?php
function blogus_footer_js()
{
wp_enqueue_script('blogus_custom-js', get_template_directory_uri() . '/js/custom.js' , array('jquery'));
?>
<script type="text/javascript">
Sticksy.initializeAll('.bs-sticky', {topSpacing: 0}, { listen: true });
</script>
<?php
} add_action('wp_footer','blogus_footer_js');
function blogus_customizer_scripts() {
wp_enqueue_style( 'blogus-customizer-styles', get_template_directory_uri() . '/css/customizer-controls.css' );
}
add_action( 'customize_controls_print_footer_scripts', 'blogus_customizer_scripts' );
if ( ! function_exists( 'blogus_admin_scripts' ) ) :
function blogus_admin_scripts() {
wp_enqueue_script( 'blogus-admin-script', get_template_directory_uri() . '/inc/ansar/customizer-admin/js/blogus-admin-script.js', array( 'jquery' ), '', true );
wp_localize_script( 'blogus-admin-script', 'blogus_ajax_object',
array( 'ajax_url' => admin_url( 'admin-ajax.php' ) )
);
wp_enqueue_style('blogus-admin-style-css', get_template_directory_uri() . '/css/customizer-controls.css');
}
endif;
add_action( 'admin_enqueue_scripts', 'blogus_admin_scripts' );
//Custom Typography Enable
function enable_custom_typography() {
$enable_custom_typography = get_theme_mod('enable_custom_typography',false);
if( $enable_custom_typography == 'true') {
custom_typography_function();
}
}
add_action('wp_footer','enable_custom_typography');
?>