shell bypass 403
<?php
/**
* businessup functions and definitions.
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package businessup
*/
$businessup_theme_path = get_template_directory() . '/inc/ansar/';
require( $businessup_theme_path . '/businessup-custom-navwalker.php' );
require( $businessup_theme_path . '/icon-functions.php');
require( $businessup_theme_path . '/font/font.php');
/* custom-color file. */
require( get_template_directory() . '/css/colors/custom-color.php');
require( $businessup_theme_path . '/customize/businessup_plugin_recommend.php');
/*-----------------------------------------------------------------------------------*/
/* Enqueue scripts and styles.
/*-----------------------------------------------------------------------------------*/
require( $businessup_theme_path .'/enqueue.php');
/* ----------------------------------------------------------------------------------- */
/* Customizer */
/* ----------------------------------------------------------------------------------- */
require( $businessup_theme_path . '/customize/ta_customize_copyright.php');
require( $businessup_theme_path . '/customize/ta_customize_header.php');
require( $businessup_theme_path . '/customize/ta_customize_homepage.php');
require( $businessup_theme_path . '/customize/ta_customize_general.php');
require( $businessup_theme_path . '/customize/ta_customize_archive.php');
require( $businessup_theme_path . '/customize/class-alpha-color-control/class-alpha-color-control.php');
require_once( trailingslashit( get_template_directory() ) . 'inc/ansar/customize-pro/class-customize.php' );
require_once( trailingslashit( get_template_directory() ) . 'inc/ansar/customize/businessup_customize_partials.php' );
require_once get_template_directory() . '/inc/ansar/businessup-admin-plugin-install.php';
/*
* Load customize pro
*/
require_once( trailingslashit( get_template_directory() ) . 'inc/ansar/customize/ta_customize_partials.php' );
/* Calling in the admin area for the Welcome Page */
if ( is_admin() ) {
require get_template_directory() . '/inc/ansar/themeinfo/themeinfo-detail.php';
}
if ( ! function_exists( 'businessup_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 for post thumbnails.
*/
function businessup_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on businessup, use a find and replace
* to change 'businessup' to the name of your theme in all the template files.
*/
load_theme_textdomain( 'businessup', get_template_directory() . '/languages' );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
//Added selecctive refresh for widget
add_theme_support( 'customize-selective-refresh-widgets' );
/* Add theme support for gutenberg block */
add_theme_support( 'align-wide' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => __( 'Primary menu', 'businessup' ),
'social' => __( 'Social Links Menu', 'businessup' ),
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'businessup_custom_background_args', array(
'default-color' => 'ffffff',
'default-image' => '',
) ) );
// Set up the woocommerce feature.
add_theme_support( 'woocommerce');
// Woocommerce Gallery Support
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
//Custom logo
add_theme_support(
'custom-logo',
array(
'unlink-homepage-logo' => true, // Add Here!
)
);
// custom header Support
$args = array(
'default-image' => get_template_directory_uri() .'/images/sub-header.jpg',
'width' => '1600',
'height' => '600',
'flex-height' => false,
'flex-width' => false,
'header-text' => true,
'default-text-color' => '#143745'
);
add_theme_support( 'custom-header', $args );
}
endif;
add_action( 'after_setup_theme', 'businessup_setup' );
function businessup_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
add_filter('get_custom_logo','businessup_logo_class');
function businessup_logo_class($html)
{
$html = str_replace('custom-logo-link', 'navbar-brand', $html);
return $html;
}
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*/
function businessup_content_width() {
$GLOBALS['content_width'] = apply_filters( 'businessup_content_width', 640 );
}
add_action( 'after_setup_theme', 'businessup_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function businessup_widgets_init() {
$businessup_footer_column_layout = get_theme_mod('businessup_footer_column_layout',3);
$businessup_footer_column_layout = 12 / $businessup_footer_column_layout;
register_sidebar( array(
'name' => esc_html__( 'Sidebar Widget Area', 'businessup' ),
'id' => 'sidebar-1',
'description' => '',
'before_widget' => '<div id="%1$s" class="businessup-widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h6>',
'after_title' => '</h6>',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Widget Area', 'businessup' ),
'id' => 'footer_widget_area',
'description' => '',
'before_widget' => '<div id="%1$s" class="col-md-'.$businessup_footer_column_layout.' rotateInDownLeft animated businessup-widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h6>',
'after_title' => '</h6>',
) );
}
add_action( 'widgets_init', 'businessup_widgets_init' );
/*-----------------------------------------------------------------------------------*/
/* customizer-controls
/*-----------------------------------------------------------------------------------*/
/* Custom template tags for this theme. */
require get_template_directory() . '/inc/template-tags.php';
//Editor Styling
add_editor_style( array( 'css/editor-style.css') );
//Read more Button on slider & Post
function businessup_read_more() {
global $post;
$readbtnurl = '<br><a class="btn btn-theme post-btn" href="' . get_permalink() . '">'.__('Read More','businessup').'</a>';
return $readbtnurl;
}
add_filter( 'the_content_more_link', 'businessup_read_more' );
function businessup_excerpt_more_button( $more ) {
return '<br><a class="btn btn-theme post-btn" href="' . get_permalink() . '">'.__('Read More','businessup').'</a>';
}
add_filter( 'excerpt_more', 'businessup_excerpt_more_button', 20 );
if ( ! function_exists( 'wp_body_open' ) ) :
/**
* Fire the wp_body_open action.
*
* Added for backwards compatibility to support pre 5.2.0 WordPress versions.
*
* @since Twenty Nineteen 1.4
*/
function wp_body_open() {
/**
* Triggered after the opening <body> tag.
*
* @since Twenty Nineteen 1.4
*/
do_action( 'wp_body_open' );
}
endif;
add_filter( 'woocommerce_show_page_title', 'businessup_hide_shop_page_title' );
function businessup_hide_shop_page_title( $title ) {
if ( is_shop() ) $title = false;
return $title;
}
if (!function_exists('businessup_edit_link')) :
function businessup_edit_link($view = 'default')
{
global $post;
edit_post_link(
sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__('Edit <span class="screen-reader-text">%s</span>', 'businessup'),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
),
'<span class="edit-link"><i class="far fa-edit"></i>',
'</span>'
);
}
endif;