[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.148.115.187: ~ $
<?php
/**
 * Tutor functions and definitions
 *
 * @package Tutor
 */

if ( ! function_exists( 'tutor_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 tutor_setup() {

	if ( ! isset( $content_width ) )
		$content_width = 640; /* pixels */

	load_theme_textdomain( 'tutor', get_template_directory() . '/languages' );
	add_theme_support( 'automatic-feed-links' );
	add_theme_support( 'post-thumbnails' );
	add_theme_support( 'title-tag' );
	add_theme_support( 'custom-logo', array(
		'height'      => 240,
		'width'       => 240,
		'flex-height' => true,
	) );
	add_image_size('tutor-homepage-thumb',240,145,true);
	register_nav_menus( array(
		'primary' => __( 'Primary Menu', 'tutor' ),		
	) );
	add_theme_support( 'custom-background', array(
		'default-color' => 'ffffff'
	) );
	
	// Add support for Block Styles.
	add_theme_support( 'wp-block-styles' );

	// Add support for full and wide align images.
	add_theme_support( 'align-wide' );
	
	add_filter('use_widgets_block_editor', '__return_false');
	
	/*
		 * Switch default core markup for search form, comment form, and comments
		 * to output valid HTML5.
		 */
		add_theme_support(
			'html5',
			array(
				'comment-form',
				'comment-list',
				'gallery',
				'caption',
				'style',
				'script',
				'navigation-widgets',
			)
		);
	
	// Add support for responsive embedded content.
	add_theme_support( 'responsive-embeds' );
	add_editor_style( array( 'editor-style.css', tutor_font_url() ) );
}
endif; // tutor_setup
add_action( 'after_setup_theme', 'tutor_setup' );


function tutor_widgets_init() {
	register_sidebar( array(
		'name'          => __( 'Blog Sidebar', 'tutor' ),
		'description'   => __( 'Appears on blog page as sidebar. It will be displayed only in sidebar and single blog post.', 'tutor' ),
		'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', 'tutor' ),
		'description'   => __( 'This widget is appear in pages as pages sidebar.', 'tutor' ),
		'id'            => 'sidebar-2',
		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
		'after_widget'  => '</aside>',
		'before_title'  => '<h3 class="widget-title">',
		'after_title'   => '</h3>',
	) );

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

function tutor_font_url(){
		$font_url = '';
		
		/* Translators: If there are any character that are
		* not supported by Lato, translate this to off, do not
		* translate into your own language.
		*/
		$lato = _x('on', 'Lato font:on or off','tutor');
		
		/* Translators: If there are any character that are
		* not supported by Assistant, translate this to off, do not
		* translate into your own language.
		*/
		$asst = _x('on', 'Assistant font:on or off','tutor');
		
		/* Translators: If there are any character that are
		* not supported by Roboto, translate this to off, do not
		* translate into your own language.
		*/
		$roboto = _x('on', 'Roboto font:on or off','tutor');
		
		/* Translators: If there are any character that are
		* not supported by Oswald, translate this to off, do not
		* translate into your own language.
		*/
		$oswald = _x('on', 'Oswald font:on or off','tutor');
		
		if( 'off' !== $lato || 'off' !== $asst || 'off' !== $roboto || 'off' !== $oswald ){
			$font_family = array();
			
			if('off' !== $lato){
				$font_family[] = 'Lato:400,700';
			}
			
			if('off' !== $asst){
				$font_family[] = 'Assistant:400,700';
			}
			
			if('off' !== $roboto){
				$font_family[] = 'Roboto:400,700';
			}
			
			if('off' !== $oswald){
				$font_family[]= 'Oswald:400,700';
			}

			$query_args = array(
				'family'	=> urlencode(implode('|',$font_family)),
			);
			
			$font_url = add_query_arg($query_args,'https://fonts.googleapis.com/css');
		}
		
	return $font_url;
	}

function tutor_scripts() {
	wp_enqueue_style( 'tutor-font', tutor_font_url(), array() );
	wp_enqueue_style( 'tutor-basic-style', get_stylesheet_uri() );
	wp_enqueue_style( 'tutor-editor-style', get_template_directory_uri().'/editor-style.css' );
	wp_enqueue_style( 'tutor-responsive-style', get_template_directory_uri().'/css/theme-responsive.css' );
	wp_enqueue_style( 'nivo-style', get_template_directory_uri().'/css/nivo-slider.css');
	wp_enqueue_style( 'font-awesome-style', get_template_directory_uri().'/css/font-awesome.css' );
	wp_enqueue_script( 'jquery-nivo-slider-js', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') );
	wp_enqueue_script( 'tutor-customscripts', get_template_directory_uri() . '/js/custom.js', array('jquery') );
	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
		wp_enqueue_script( 'comment-reply' );
	}
}
add_action( 'wp_enqueue_scripts', 'tutor_scripts' );

/**
 * Use front-page.php when Front page displays is set to a static page.
 *
 *
 * @param string $template front-page.php.
 *
 * @return string The template to be used: blank if is_home() is true (defaults to index.php), else $template.
 */
function tutor_front_page_template( $template ) {
	return is_home() ? '' : $template;
}
add_filter( 'frontpage_template',  'tutor_front_page_template' );


/**
 * 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';

/**
 * Custom functions that act independently of the theme templates.
 */
require get_template_directory() . '/inc/extras.php';

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

/*
 * Load customize pro
 */
require_once( trailingslashit( get_template_directory() ) . 'customize-pro/class-customize.php' );

Filemanager

Name Type Size Permission Actions
css Folder 0755
customize-pro Folder 0755
images Folder 0755
inc Folder 0755
js Folder 0755
404.php File 879 B 0644
archive.php File 1.15 KB 0644
change_log.txt File 209 B 0644
comments.php File 1.98 KB 0644
content-page.php File 686 B 0644
content-single.php File 1.46 KB 0644
content.php File 3.84 KB 0644
editor-style.css File 139 B 0644
footer.php File 689 B 0644
front-page.php File 3.27 KB 0644
full-width.php File 947 B 0644
functions.php File 6.16 KB 0644
header.php File 4.18 KB 0644
image.php File 3.97 KB 0644
index.php File 1.58 KB 0644
license.txt File 34.97 KB 0644
no-results.php File 998 B 0644
page.php File 1.03 KB 0644
readme.txt File 3.5 KB 0644
screenshot.png File 267.9 KB 0644
search.php File 1007 B 0644
searchform.php File 540 B 0644
sidebar.php File 822 B 0644
single.php File 909 B 0644
style.css File 16.54 KB 0644