| Server IP : 77.50.203.18 / Your IP : 192.168.0.10 Web Server : Apache/2.4.62 (CentOS Stream) OpenSSL/3.5.7 mpm-itk/2.4.7-04 PHP/8.4.23 System : Linux web2 5.14.0-722.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jul 6 09:07:51 UTC 2026 x86_64 User : warsnews.ru ( 1001) PHP Version : 8.4.23 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/ifwar.ru/www/wp-content/themes/newsup/inc/ansar/ |
Upload File : |
<?php function newsup_scripts() {
wp_enqueue_style('bootstrap', get_template_directory_uri() . '/css/bootstrap.css');
wp_style_add_data( 'bootstrap', 'rtl', 'replace' );
wp_enqueue_style( 'newsup-style', get_stylesheet_uri() );
wp_style_add_data( 'newsup-style', 'rtl', 'replace' );
wp_enqueue_style('newsup-default', get_template_directory_uri() . '/css/colors/default.css');
wp_enqueue_style('font-awesome-5-all',get_template_directory_uri().'/css/font-awesome/css/all.min.css');
wp_enqueue_style('font-awesome-4-shim',get_template_directory_uri().'/css/font-awesome/css/v4-shims.min.css');
wp_enqueue_style('owl-carousel', get_template_directory_uri() . '/css/owl.carousel.css');
wp_enqueue_style('smartmenus',get_template_directory_uri().'/css/jquery.smartmenus.bootstrap.css');
wp_enqueue_style('newsup-custom-css', get_template_directory_uri() . '/inc/ansar/customize/css/customizer.css', array(), '1.0', 'all');
if (class_exists('WooCommerce')) {
wp_enqueue_style('newsup-woocommerce-style', get_template_directory_uri() . '/css/woocommerce.css');
}
/* Js script */
wp_enqueue_script( 'newsup-navigation', get_template_directory_uri() . '/js/navigation.js', array('jquery'));
wp_enqueue_script('bootstrap', get_template_directory_uri() . '/js/bootstrap.js', array('jquery'));
wp_enqueue_script('owl-carousel-min', get_template_directory_uri() . '/js/owl.carousel.min.js', array('jquery'));
wp_enqueue_script('smartmenus-js', get_template_directory_uri() . '/js/jquery.smartmenus.js' , array('jquery'));
wp_enqueue_script('bootstrap-smartmenus-js', get_template_directory_uri() . '/js/jquery.smartmenus.bootstrap.js' , array('jquery'));
wp_enqueue_script('newsup-marquee-js', get_template_directory_uri() . '/js/jquery.marquee.js' , array('jquery'));
wp_enqueue_script('newsup-main-js', get_template_directory_uri() . '/js/main.js' , array('jquery'));
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action('wp_enqueue_scripts', 'newsup_scripts');
//Custom js for time
function newsup_custom_js() {
wp_enqueue_script('newsup-custom', get_template_directory_uri() . '/js/custom.js' , array('jquery'));
$header_time_enable = get_theme_mod('header_time_enable','true');
if($header_time_enable == 'true') {
$newsup_date_time_show_type = get_theme_mod('newsup_date_time_show_type','newsup_default');
if($newsup_date_time_show_type == 'newsup_default'){
wp_enqueue_script('newsup-custom-time', get_template_directory_uri() . '/js/custom-time.js' , array('jquery'));
} } }
add_action('wp_footer','newsup_custom_js');
/**
* 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 newsup_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', 'newsup_skip_link_focus_fix' );
//Footer widget text color
function newsup_footer_text_color() {
$newsup_footer_text_color = get_theme_mod('newsup_footer_text_color');
if($newsup_footer_text_color) { ?>
<style>
footer .mg-widget p, footer .site-title-footer a, footer .site-title a:hover, footer .site-description-footer, footer .site-description:hover, footer .mg-widget ul li a{
color: <?php echo esc_attr($newsup_footer_text_color); ?>;
}
</style>
<?php } ?>
<style>
.wp-block-search .wp-block-search__label::before, .mg-widget .wp-block-group h2:before, .mg-sidebar .mg-widget .wtitle::before, .mg-sec-title h4::before, footer .mg-widget h6::before {
background: inherit;
}
</style>
<?php
}
add_action('wp_footer','newsup_footer_text_color');
if ( ! function_exists( 'newsup_admin_scripts' ) ) :
function newsup_admin_scripts() {
wp_enqueue_script(
'newsup-admin-script',
get_template_directory_uri() . '/inc/ansar/customizer-admin/js/newsup-admin-script.js',
array( 'jquery' ),
'',
true
);
wp_localize_script(
'newsup-admin-script',
'newsup_ajax_object',
array(
'ajax_url' => admin_url( 'admin-ajax.php' ),
'install_nonce' => wp_create_nonce( 'newsup_install_plugin_nonce' ),
'can_install' => current_user_can( 'install_plugins' ),
)
);
wp_enqueue_style( 'newsup-admin-style-css', get_template_directory_uri() . '/css/customizer-controls.css' );
}
endif;
add_action( 'admin_enqueue_scripts', 'newsup_admin_scripts' );