D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
sadaunjx
/
public_html
/
wp-content
/
themes
/
newsplus1
/
inc
/
Filename :
widgets.php
back
Copy
<?php /* Copyrights (C) Arb4Host Network */ ?> <?php function a4h_widgets_enqueue() { wp_enqueue_script('widgets-js', get_theme_file_uri('assets/js/admin-widgets.js', array(), THEME_VERSION)); wp_enqueue_style('widgets-css', get_theme_file_uri('assets/css/admin-widgets.css', array(), THEME_VERSION)); wp_enqueue_script('media-upload'); wp_enqueue_script('thickbox'); wp_enqueue_style('thickbox'); } add_action('load-widgets.php', 'a4h_widgets_enqueue'); foreach ( glob(get_theme_file_path('inc/widgets/*.php')) as $filename ) { get_template_part('inc/widgets/'.basename($filename, '.php')); }