File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
/**
* SKT Bizness functions and definitions
*
* @package SKT Bizness
*/
/**
* Set the content width based on the theme's design and stylesheet.
*/
if ( ! function_exists( 'skt_bizness_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 skt_bizness_setup() {
global $content_width;
if ( ! isset( $content_width ) ) {
$content_width = 810;
}
load_theme_textdomain( 'skt-bizness', get_template_directory() . '/languages' );
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'post-thumbnails' );
add_theme_support ('custom-header');
add_theme_support( 'woocommerce' );
add_theme_support( 'title-tag' );
add_image_size('skt-bizness-homepage-thumb',240,145,true);
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'skt-bizness' ),
'footer' => __( 'Footer Menu', 'skt-bizness' ),
) );
add_theme_support( 'custom-background', array(
'default-color' => 'f1f0f0',
'default-image' => get_template_directory_uri().'/images/body_bg.jpg',
) );
add_editor_style( 'editor-style.css' );
}
endif; // skt_bizness_setup
add_action( 'after_setup_theme', 'skt_bizness_setup' );
function skt_bizness_widgets_init() {
register_sidebar( array(
'name' => __( 'Sidebar Main', 'skt-bizness' ),
'description' => __( 'Appears on all site', 'skt-bizness' ),
'id' => 'sidebar-main',
'before_widget' => '<aside id="%1$s" class="sidebar-area %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget_title">',
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'skt_bizness_widgets_init' );
function skt_bizness_font_url(){
$font_url = '';
/* Translators: If there are any character that are
* not supported by PT Sans, translate this to off, do not
* translate into your own language.
*/
$ptsans = _x('on', 'PT Sans font:on or off','skt-bizness');
if('off' !== $ptsans){
$font_family = array();
if('off' !== $ptsans){
$font_family[] = 'PT Sans:300,400,600,700,800,900';
}
$query_args = array(
'family' => urlencode(implode('|',$font_family)),
);
$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
}
return $font_url;
}
function skt_bizness_scripts() {
wp_enqueue_style( 'skt_bizness-font', skt_bizness_font_url(), array() );
wp_enqueue_style( 'skt_bizness-basic-style', get_stylesheet_uri() );
wp_enqueue_style( 'skt_bizness-editor-style', get_template_directory_uri()."/editor-style.css" );
wp_enqueue_style( 'skt_bizness-responsive-style', get_template_directory_uri()."/css/theme-responsive.css" );
wp_enqueue_style( 'skt_bizness-nivoslider-style', get_template_directory_uri()."/css/nivo-slider.css" );
wp_enqueue_style( 'skt_bizness-base-style', get_template_directory_uri()."/css/style_base.css" );
wp_enqueue_script( 'skt_bizness-nivo-script', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') );
wp_enqueue_script( 'skt_bizness-custom_js', get_template_directory_uri() . '/js/custom.js' );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'skt_bizness_scripts' );
function skt_bizness_ie_stylesheet(){
global $wp_styles;
/** Load our IE-only stylesheet for all versions of IE.
* <!--[if lt IE 9]> ... <![endif]-->
*
* Note: It is also possible to just check and see if the $is_IE global in WordPress is set to true before
* calling the wp_enqueue_style() function. If you are trying to load a stylesheet for all browsers
* EXCEPT for IE, then you would HAVE to check the $is_IE global since WordPress doesn't have a way to
* properly handle non-IE conditional comments.
*/
wp_enqueue_style('skt-bizness-ie', get_template_directory_uri().'/css/ie.css', array('skt-bizness-style'));
$wp_styles->add_data('skt-bizness-ie','conditional','IE');
}
add_action('wp_enqueue_scripts','skt_bizness_ie_stylesheet');
function skt_bizness_pagination() {
global $wp_query;
$big = 12345678;
$page_format = paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages,
'type' => 'array'
) );
if( is_array($page_format) ) {
$paged = ( get_query_var('paged') == 0 ) ? 1 : get_query_var('paged');
echo '<div class="pagination"><div><ul>';
echo '<li><span>'. $paged . ' of ' . $wp_query->max_num_pages .'</span></li>';
foreach ( $page_format as $page ) {
echo "<li>$page</li>";
}
echo '</ul></div></div>';
}
}
// Define urls
define('SKT_URL','http://sktthemes.net/');
define('SKT_PRO_THEME_URL','http://www.sktthemes.net/themes/responsive-business-wordpress-theme/');
define('SKT_THEME_URL','http://www.sktthemes.net/themes/');
define('SKT_THEME_DOC','http://sktthemesdemo.net/documentation/bizness-documentation/');
define('SKT_THEME_FEATURED_SET_VIDEO_URL','https://www.youtube.com/watch?v=310YGYtGLIM');
/**
* 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 Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';
function skt_bizness_custom_blogpost_pagination( $wp_query ){
$big = 999999999; // need an unlikely integer
if ( get_query_var('paged') ) { $pageVar = 'paged'; }
elseif ( get_query_var('page') ) { $pageVar = 'page'; }
else { $pageVar = 'paged'; }
$pagin = paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?'.$pageVar.'=%#%',
'current' => max( 1, get_query_var($pageVar) ),
'total' => $wp_query->max_num_pages,
'prev_text' => '« Prev',
'next_text' => 'Next »',
'type' => 'array'
) );
if( is_array($pagin) ) {
$paged = ( get_query_var('paged') == 0 ) ? 1 : get_query_var('paged');
echo '<div class="pagination"><div><ul>';
echo '<li><span>'. $paged . ' of ' . $wp_query->max_num_pages .'</span></li>';
foreach ( $pagin as $page ) {
echo "<li>$page</li>";
}
echo '</ul></div></div>';
}
}
function skt_bizness_custom_excerpt_length( $length ) {
return 30;
}
add_filter( 'excerpt_length', 'skt_bizness_custom_excerpt_length', 999 );
function skt_bizness_credit_link(){
return "Theme by <a href=".SKT_URL." target='_blank'>SKT Theme</a>";
}