HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/slfopp7cb1df/www/theselfmasterybookclub.com/wp-content/plugins/futurio-extra/inc/widgets.php
<?php

/**
 * Custom widgets.
 *
 */
// Exit if accessed directly.
if ( !defined( 'ABSPATH' ) ) {
	exit;
}

if ( !function_exists( 'futurio_extra_load_widgets' ) ) :

	/**
	 * Load widgets.
	 *
	 * @since 1.0.0
	 */
	function futurio_extra_load_widgets() {

		// Extended Recent Post.
		register_widget( 'Futurio_Extra_Extended_Recent_Posts' );

		// Popular Post.
		register_widget( 'Futurio_Extra_Popular_Posts' );

		// Social.
		register_widget( 'Futurio_Extra_Social_Widget' );

		// About.
		register_widget( 'Futurio_Extra_About_Me_Widget' );
	}

endif;

add_action( 'widgets_init', 'futurio_extra_load_widgets' );

/**
 * Recent Posts Widget
 */
require_once( plugin_dir_path( __FILE__ ) . 'widgets/recent-posts.php' );

/**
 * Popular Posts Widget
 */
require_once( plugin_dir_path( __FILE__ ) . 'widgets/popular-posts.php' );

/**
 * Social Widget
 */
require_once( plugin_dir_path( __FILE__ ) . 'widgets/social.php' );

/**
 * About Me Widget
 */
require_once( plugin_dir_path( __FILE__ ) . 'widgets/about-me.php' );