GRAYBYTE WORDPRESS FILE MANAGER2213

Server IP : 149.255.58.128 / Your IP : 216.73.216.205
System : Linux cloud516.thundercloud.uk 5.14.0-427.26.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 17 15:51:13 EDT 2024 x86_64
PHP Version : 8.2.28
Disable Function : allow_url_include, apache_child_terminate, apache_setenv, exec, passthru, pcntl_exec, posix_kill, posix_mkfifo, posix_getpwuid, posix_setpgid, posix_setsid, posix_setuid, posix_setgid, posix_seteuid, posix_setegid, posix_uname, proc_close, proc_get_status, proc_open, proc_terminate, shell_exec, show_source, system
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/wheelch2/public_html/wp-content/themes/building-lite/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/wheelch2/public_html/wp-content/themes/building-lite//functions.php
<?php
/**
 * Building Lite functions and definitions
 *
 * @package Building Lite
 */

if ( ! function_exists( 'building_lite_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 building_lite_setup() {
	
	if ( ! isset( $content_width ) )
		$content_width = 640; /* pixels */

	load_theme_textdomain( 'building-lite', 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('building-lite-homepage-thumb',true);
	register_nav_menus( array(
		'primary' => __( 'Primary Menu', 'building-lite' ),		
	) );
	add_theme_support( 'custom-background', array(
		'default-color' => 'f1f1f1'
	) );
	
	// 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', building_lite_font_url() ) );
}
endif; // building_lite_setup
add_action( 'after_setup_theme', 'building_lite_setup' );


function building_lite_widgets_init() {
	register_sidebar( array(
		'name'          => __( 'Blog Sidebar', 'building-lite' ),
		'description'   => __( 'Appears on blog page sidebar', 'building-lite' ),
		'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>',
	) );

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

function building_lite_font_url(){
		$font_url = '';
		
		/* Translators: If there are any character that are
		* not supported by Rajdhani, translate this to off, do not
		* translate into your own language.
		*/
		$raj = _x('on', 'Rajdhani font:on or off','building-lite');
		
		/* Translators: If there are any character that are
		* not supported by Karla, translate this to off, do not
		* translate into your own language.
		*/
		$karla = _x('on', 'Karla font:on or off','building-lite');
		
		
		
		if('off' !== $raj || 'off' !== $karla){
			$font_family = array();
			
			if('off' !== $raj){
				$font_family[] = 'Rajdhani:400,700';
			}
			
			if('off' !== $karla){
				$font_family[] = 'Karla:400';
			}
			
			$query_args = array(
				'family'	=> urlencode(implode('|',$font_family)),
			);
			
			$font_url = add_query_arg($query_args,'https://fonts.googleapis.com/css');
		}
		
	return $font_url;
	}

function building_lite_scripts() {
	wp_enqueue_style( 'building-lite-font', building_lite_font_url(), array() );
	wp_enqueue_style( 'building-lite-basic-style', get_stylesheet_uri() );
	wp_enqueue_style( 'building-lite-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( 'building-lite-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', 'building_lite_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 building_lite_front_page_template( $template ) {
	return is_home() ? '' : $template;
}
add_filter( 'frontpage_template',  'building_lite_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';

// Block Patterns.
require get_template_directory() . '/inc/block-patterns.php';

// Block Styles.
require get_template_directory() . '/inc/block-styles.php';

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

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 05 2024 12:06:44
1032 / wheelch2
0755
css
--
May 29 2023 22:41:18
1032 / wheelch2
0755
customize-pro
--
May 29 2023 22:41:18
1032 / wheelch2
0755
images
--
May 29 2023 22:41:18
1032 / wheelch2
0755
inc
--
May 29 2023 22:41:18
1032 / wheelch2
0755
js
--
May 29 2023 22:41:18
1032 / wheelch2
0755
languages
--
May 29 2023 22:41:18
1032 / wheelch2
0755
404.php
0.856 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
archive.php
1.131 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
change_log.txt
0.184 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
comments.php
3.236 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
content-page.php
0.726 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
content-single.php
1.54 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
content.php
2.059 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
editor-style.css
0.136 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
footer.php
1.102 KB
June 03 2023 19:06:12
1032 / wheelch2
0644
front-page.php
4.672 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
full-width.php
0.908 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
functions.php
5.366 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
header.php
4.199 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
image.php
3.791 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
index.php
1.567 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
license.txt
34.323 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
no-results.php
0.99 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
page.php
1.011 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
readme.txt
3.346 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
screenshot.png
381.935 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
search.php
1.05 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
searchform.php
0.559 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
sidebar.php
0.826 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
single.php
0.858 KB
May 29 2023 22:41:18
1032 / wheelch2
0644
style.css
16.915 KB
May 29 2023 22:41:18
1032 / wheelch2
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF