| Server IP : 213.186.33.2 / Your IP : 216.73.216.39 Web Server : Apache System : Linux webm005.cluster102.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : symetry ( 21728) PHP Version : 8.2.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/symetry/www/wp-content/plugins/popularis-extra/library/ |
Upload File : |
<?php
/**
* Custom widgets.
*
*/
// Exit if accessed directly.
if (!defined('ABSPATH')) {
exit;
}
if (!function_exists('popularis_extra_load_widgets')) :
/**
* Load widgets.
*
* @since 1.0.0
*/
function popularis_extra_load_widgets() {
// Extended Recent Post.
register_widget('Popularis_Extra_Extended_Recent_Posts');
// Popular Post.
register_widget('Popularis_Extra_Popular_Posts');
// Social.
register_widget('Popularis_Extra_Social_Widget');
// About.
register_widget('Popularis_Extra_About_Me_Widget');
}
endif;
add_action('widgets_init', 'popularis_extra_load_widgets');
/**
* Recent Posts Widget
*/
require_once( plugin_dir_path(__FILE__) . 'extra-widgets/recent-posts-widget.php' );
/**
* Popular Posts Widget
*/
require_once( plugin_dir_path(__FILE__) . 'extra-widgets/popular-posts-widget.php' );
/**
* Social Widget
*/
require_once( plugin_dir_path(__FILE__) . 'extra-widgets/social-widget.php' );
/**
* About Me Widget
*/
require_once( plugin_dir_path(__FILE__) . 'extra-widgets/about-widget.php' );