18 lines
495 B
PHP
18 lines
495 B
PHP
<?php
|
|
|
|
|
|
if( ! defined( 'DAISY_BLOG_WIDGET_PATH' ) ) {
|
|
define( 'DAISY_BLOG_WIDGET_PATH', dirname( __FILE__ ) );
|
|
}
|
|
|
|
|
|
/**
|
|
* Author Profile Widget.
|
|
*/
|
|
require_once DAISY_BLOG_WIDGET_PATH . '/includes/class-graphthemes-widget-functions.php';
|
|
|
|
require_once DAISY_BLOG_WIDGET_PATH . '/includes/widgets/widget-author-profile.php';
|
|
|
|
require_once DAISY_BLOG_WIDGET_PATH . '/includes/widgets/widget-recent-posts.php';
|
|
|
|
require_once DAISY_BLOG_WIDGET_PATH . '/includes/widgets/widget-popular-posts.php'; |