HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vmi1674223.contaboserver.net 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: root (0)
PHP: 7.4.3-4ubuntu2.22
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/ruwebsiteok/wp-content/themes/educational-university/functions.php
<?php
/**
 * Educational University functions and definitions
 *
 * @package Educational University
 */

/**
 * Set the content width based on the theme's design and stylesheet.
 */

if ( ! function_exists( 'educational_university_setup' ) ) :
/**
 * Sets up theme defaults and registers support for various WordPress features.
 *
 * Note that this function is hooked into the after_setup_theme hook, which runs
 * before the init hook. The init hook is too late for some features, such as indicating
 * support post thumbnails.
 */
function educational_university_setup() {
	global $content_width;
	if ( ! isset( $content_width ) )
		$content_width = 680;
	
	load_theme_textdomain( 'educational-university', get_template_directory() . '/languages' );
	add_theme_support( 'automatic-feed-links' );
	add_theme_support( "responsive-embeds" );
	add_theme_support( 'align-wide' );
	add_theme_support( 'woocommerce' );
	add_theme_support( 'post-thumbnails' );
	add_theme_support( 'title-tag' );
	add_theme_support( 'wp-block-styles');
	add_theme_support( 'custom-header', array(
		'default-text-color' => false,
		'header-text' => false,
	) );
	add_theme_support( 'custom-logo', array(
		'height'      => 50,
		'width'       => 100,
		'flex-height' => true,
	) );
	register_nav_menus( array(
		'primary' => __( 'Primary Menu', 'educational-university' ),
	) );
	add_theme_support( 'custom-background', array(
		'default-color' => 'ffffff'
	) );
	add_theme_support( 'html5', array(
		'search-form',
		'comment-form',
		'comment-list',
		'gallery',
		'caption',
	) );

	/*
	 * Enable support for Post Formats.
	 */
	add_theme_support( 'post-formats', array('image','video','gallery','audio',) );

	add_editor_style( 'editor-style.css' );

	global $pagenow;

    if ( is_admin() && 'themes.php' === $pagenow && isset( $_GET['activated'] ) && current_user_can( 'manage_options' ) ) {
        add_action('admin_notices', 'educational_university_deprecated_hook_admin_notice');
    }
}
endif; // educational_university_setup
add_action( 'after_setup_theme', 'educational_university_setup' );

function educational_university_the_breadcrumb() {
    echo '<div class="breadcrumb my-3">';

    if (!is_home()) {
        echo '<a class="home-main align-self-center" href="' . esc_url(home_url()) . '">';
        bloginfo('name');
        echo "</a>";

        if (is_category() || is_single()) {
            the_category(' ');
            if (is_single()) {
                echo '<span class="current-breadcrumb mx-3">' . esc_html(get_the_title()) . '</span>';
            }
        } elseif (is_page()) {
            echo '<span class="current-breadcrumb mx-3">' . esc_html(get_the_title()) . '</span>';
        }
    }

    echo '</div>';
}

function educational_university_widgets_init() {
	register_sidebar( array(
		'name'          => __( 'Blog Sidebar', 'educational-university' ),
		'description'   => __( 'Appears on blog page sidebar', 'educational-university' ),
		'id'            => 'sidebar-1',
		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
		'after_widget'  => '</aside>',
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
	) );

	register_sidebar( array(
		'name'          => __( 'Page Sidebar', 'educational-university' ),
		'id'            => 'sidebar-2',
		'description'   => __( 'Add widgets here to appear in your sidebar on pages.', 'educational-university' ),
		'before_widget' => '<section id="%1$s" class="widget %2$s">',
		'after_widget'  => '</section>',
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
	) );

	register_sidebar( array(
		'name'          => __( 'Sidebar 3', 'educational-university' ),
		'id'            => 'sidebar-3',
		'description'   => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'educational-university' ),
		'before_widget' => '<section id="%1$s" class="widget %2$s">',
		'after_widget'  => '</section>',
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
	) );

	register_sidebar(array(
        'name'          => __('Shop Sidebar', 'educational-university'),
        'description'   => __('Sidebar for WooCommerce shop pages', 'educational-university'),
		'id'            => 'woocommerce_sidebar',
        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
        'after_widget'  => '</aside>',
        'before_title'  => '<h3 class="widget-title">',
        'after_title'   => '</h3>',
    ));
	register_sidebar(array(
        'name'          => __('Single Product Sidebar', 'educational-university'),
        'description'   => __('Sidebar for single product pages', 'educational-university'),
		'id'            => 'woocommerce-single-sidebar',
        'before_widget' => '<aside id="%1$s" class="widget %2$s">',
        'after_widget'  => '</aside>',
        'before_title'  => '<h3 class="widget-title">',
        'after_title'   => '</h3>',
    ));		
	
	$educational_university_widget_areas = get_theme_mod('educational_university_footer_widget_areas', '4');
	for ($educational_university_i=1; $educational_university_i <= 4; $educational_university_i++) {
		register_sidebar( array(
			'name'          => __( 'Footer Widget ', 'educational-university' ) . $educational_university_i,
			'id'            => 'footer-' . $educational_university_i,
			'description'   => '',
			'before_widget' => '<aside id="%1$s" class="ftr-4-box widget-column-4 %2$s">',
			'after_widget'  => '</aside>',
			'before_title'  => '<h3 class="widget-title">',
			'after_title'   => '</h3>',
		) );
	}

}
add_action( 'widgets_init', 'educational_university_widgets_init' );

// Change number of products per row to 3
add_filter('loop_shop_columns', 'educational_university_loop_columns');
if (!function_exists('educational_university_loop_columns')) {
    function educational_university_loop_columns() {
        $colm = get_theme_mod('educational_university_products_per_row', 4); // Default to 3 if not set
        return $colm;
    }
}

// Use the customizer setting to set the number of products per page
function educational_university_products_per_page($cols) {
    $cols = get_theme_mod('educational_university_products_per_page', 9); // Default to 9 if not set
    return $cols;
}
add_filter('loop_shop_per_page', 'educational_university_products_per_page', 9);

function educational_university_scripts() {
	
	wp_enqueue_style( 'bootstrap-css', esc_url(get_template_directory_uri())."/css/bootstrap.css" );
	wp_enqueue_style('educational-university-style', get_stylesheet_uri(), array() );
		wp_style_add_data('educational-university-style', 'rtl', 'replace');

	require get_parent_theme_file_path( '/inc/color-scheme/custom-color-control.php' );
	wp_add_inline_style( 'educational-university-style',$educational_university_color_scheme_css );
	wp_enqueue_style( 'educational-university-default', esc_url(get_template_directory_uri())."/css/default.css" );
	
	wp_enqueue_style( 'educational-university-style', get_stylesheet_uri() );
	wp_enqueue_script( 'bootstrap-js', esc_url(get_template_directory_uri()). '/js/bootstrap.js', array('jquery') );
	wp_enqueue_script( 'educational-university-theme', esc_url(get_template_directory_uri()) . '/js/theme.js' );
	wp_enqueue_style( 'font-awesome-css', esc_url(get_template_directory_uri())."/css/fontawesome-all.css" );
	wp_enqueue_style( 'educational-university-block-style', esc_url( get_template_directory_uri() ).'/css/blocks.css' );	

	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
		wp_enqueue_script( 'comment-reply' );
	}

	// font-family
    $educational_university_body_font = esc_html(get_theme_mod('educational_university_body_fonts'));

    if ($educational_university_body_font) {
        wp_enqueue_style('educational-university-body-fonts', 'https://fonts.googleapis.com/css?family=' . urlencode($educational_university_body_font));
    } else {
        wp_enqueue_style('Jost', 'https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900');
    }

}
add_action( 'wp_enqueue_scripts', 'educational_university_scripts' );

/**
 * Implement the Custom Header feature.
 */
require get_template_directory() . '/inc/custom-header.php';

/**
 * Custom template tags for this theme.
 */
require get_template_directory() . '/inc/template-tags.php';

/**
 * Customizer additions.
 */
require get_template_directory() . '/inc/customizer.php';

/**
 * Sanitization Callbacks.
 */
require get_template_directory() . '/inc/sanitization-callbacks.php';

/**
 * Webfont-Loader.
 */
require get_template_directory() . '/inc/wptt-webfont-loader.php';

/**
 * Customizer additions.
 */
require get_template_directory() . '/inc/upgrade-to-pro.php';

/**
 * Google Fonts
 */
require get_template_directory() . '/inc/gfonts.php';

/**
 * select .
 */
require get_template_directory() . '/inc/select/category-dropdown-custom-control.php';

/**
 * Load TGM.
 */
require get_template_directory() . '/inc/tgm/tgm.php';

/**
 * Theme Info Page.
 */
require get_template_directory() . '/inc/addon.php';

function educational_university_setup_theme() {
	if ( ! defined( 'EDUCATIONAL_UNIVERSITY_PRO_NAME' ) ) {
		define( 'EDUCATIONAL_UNIVERSITY_PRO_NAME', __( 'About Educational University', 'educational-university' ));
	}
	if ( ! defined( 'EDUCATIONAL_UNIVERSITY_PREMIUM_PAGE' ) ) {
	define('EDUCATIONAL_UNIVERSITY_PREMIUM_PAGE',__('https://www.theclassictemplates.com/products/university-wordpress-theme','educational-university'));
	}
	if ( ! defined( 'EDUCATIONAL_UNIVERSITY_THEME_PAGE' ) ) {
		define('EDUCATIONAL_UNIVERSITY_THEME_PAGE',__('https://www.theclassictemplates.com/collections/best-wordpress-templates','educational-university'));
	}
	if ( ! defined( 'EDUCATIONAL_UNIVERSITY_SUPPORT' ) ) {
	define('EDUCATIONAL_UNIVERSITY_SUPPORT',__('https://wordpress.org/support/theme/educational-university/','educational-university'));
	}
	if ( ! defined( 'EDUCATIONAL_UNIVERSITY_REVIEW' ) ) {
	define('EDUCATIONAL_UNIVERSITY_REVIEW',__('https://wordpress.org/support/theme/educational-university/reviews/#new-post','educational-university'));
	}
	if ( ! defined( 'EDUCATIONAL_UNIVERSITY_PRO_DEMO' ) ) {
	define('EDUCATIONAL_UNIVERSITY_PRO_DEMO',__('https://live.theclassictemplates.com/educational-university-pro/','educational-university'));
	}
	if ( ! defined( 'EDUCATIONAL_UNIVERSITY_THEME_DOCUMENTATION' ) ) {
	define('EDUCATIONAL_UNIVERSITY_THEME_DOCUMENTATION',__('https://live.theclassictemplates.com/demo/docs/educational-university-free/','educational-university'));
	}
}
add_action( 'after_setup_theme', 'educational_university_setup_theme' );

/* Starter Content */
	add_theme_support( 'starter-content', array(
		'widgets' => array(
			'footer-1' => array(
				'categories',
			),
			'footer-2' => array(
				'archives',
			),
			'footer-3' => array(
				'meta',
			),
			'footer-4' => array(
				'search',
			),
		),
    ));
    
// logo
if ( ! function_exists( 'educational_university_the_custom_logo' ) ) :
/**
 * Displays the optional custom logo.
 *
 * Does nothing if the custom logo is not available.
 *
 */
function educational_university_the_custom_logo() {
	if ( function_exists( 'the_custom_logo' ) ) {
		the_custom_logo();
	}
}
endif;

/* Activation Notice */
function educational_university_deprecated_hook_admin_notice() {
    $educational_university_theme = wp_get_theme();
    $educational_university_dismissed = get_user_meta( get_current_user_id(), 'educational_university_dismissable_notice', true );
    if ( !$educational_university_dismissed) { ?>
        <div class="getstrat updated notice notice-success is-dismissible notice-get-started-class">
            <div class="admin-image">
                <img style="width: 100%;max-width: 320px;line-height: 40px;display: inline-block;vertical-align: top;border: 2px solid #ddd;border-radius: 4px;" src="<?php echo esc_url(get_stylesheet_directory_uri()) .'/screenshot.png'; ?>" />
            </div>
            <div class="admin-content" >
                <h1><?php printf( esc_html__( 'Welcome to %1$s %2$s', 'educational-university' ), esc_html($educational_university_theme->get( 'Name' )), esc_html($educational_university_theme->get( 'Version' ))); ?>
                </h1>
                <p><?php _e('Get Started With Theme By Clicking On Getting Started.', 'educational-university'); ?></p>
                <div style="display: grid;">
                    <a class="admin-notice-btn button button-hero upgrade-pro" target="_blank" href="<?php echo esc_url( EDUCATIONAL_UNIVERSITY_PREMIUM_PAGE ); ?>"><?php esc_html_e('Upgrade Pro', 'educational-university') ?><i class="dashicons dashicons-cart"></i></a>
                    <a class="admin-notice-btn button button-hero" href="<?php echo esc_url( admin_url( 'themes.php?page=educational-university' )); ?>"><?php esc_html_e( 'Get started', 'educational-university' ) ?><i class="dashicons dashicons-backup"></i></a>
                    <a class="admin-notice-btn button button-hero" target="_blank" href="<?php echo esc_url( EDUCATIONAL_UNIVERSITY_THEME_DOCUMENTATION ); ?>"><?php esc_html_e('Free Doc', 'educational-university') ?><i class="dashicons dashicons-visibility"></i></a>
                    <a  class="admin-notice-btn button button-hero" target="_blank" href="<?php echo esc_url( EDUCATIONAL_UNIVERSITY_PRO_DEMO ); ?>"><?php esc_html_e('View Demo', 'educational-university') ?><i class="dashicons dashicons-awards"></i></a>
                </div>
            </div>
        </div>
    <?php }
}