shell bypass 403
<?php
require get_stylesheet_directory() . '/customizer/customizer.php';
add_action( 'after_setup_theme', 'movie_studio_after_setup_theme' );
function movie_studio_after_setup_theme() {
add_theme_support( 'title-tag' );
add_theme_support( 'automatic-feed-links' );
add_theme_support( "responsive-embeds" );
add_theme_support( 'wp-block-styles' );
add_theme_support( 'align-wide' );
add_theme_support( 'post-thumbnails' );
add_image_size( 'movie-studio-featured-image', 2000, 1200, true );
add_image_size( 'movie-studio-thumbnail-avatar', 100, 100, true );
// Set the default content width.
$GLOBALS['content_width'] = 525;
// Add theme support for Custom Logo.
add_theme_support( 'custom-logo', array(
'width' => 250,
'height' => 250,
'flex-width' => true,
'flex-height' => true,
) );
add_theme_support( 'custom-background', array(
'default-color' => '1c1c1c'
) );
add_theme_support( 'html5', array('comment-form','comment-list','gallery','caption',) );
add_editor_style( array( 'assets/css/editor-style.css') );
}
/**
* Register widget area.
*/
function movie_studio_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'movie-studio' ),
'id' => 'sidebar-1',
'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'movie-studio' ),
'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' => __( 'Page Sidebar', 'movie-studio' ),
'id' => 'sidebar-2',
'description' => __( 'Add widgets here to appear in your sidebar on pages.', 'movie-studio' ),
'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', 'movie-studio' ),
'id' => 'sidebar-3',
'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'movie-studio' ),
'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' => __( 'Footer 1', 'movie-studio' ),
'id' => 'footer-1',
'description' => __( 'Add widgets here to appear in your footer.', 'movie-studio' ),
'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' => __( 'Footer 2', 'movie-studio' ),
'id' => 'footer-2',
'description' => __( 'Add widgets here to appear in your footer.', 'movie-studio' ),
'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' => __( 'Footer 3', 'movie-studio' ),
'id' => 'footer-3',
'description' => __( 'Add widgets here to appear in your footer.', 'movie-studio' ),
'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' => __( 'Footer 4', 'movie-studio' ),
'id' => 'footer-4',
'description' => __( 'Add widgets here to appear in your footer.', 'movie-studio' ),
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'movie_studio_widgets_init' );
// enqueue styles for child theme
function movie_studio_enqueue_styles() {
// Bootstrap
wp_enqueue_style( 'bootstrap-css', get_theme_file_uri( '/assets/css/bootstrap.css' ) );
// Theme block stylesheet.
wp_enqueue_style( 'movie-studio-block-style', get_theme_file_uri( '/assets/css/blocks.css' ), array( 'movie-studio-child-style' ), '1.0' );
// enqueue parent styles
wp_enqueue_style('film-maker-lite-style', get_template_directory_uri() .'/style.css');
// enqueue child styles
wp_enqueue_style('film-maker-lite-child-style', get_stylesheet_directory_uri() .'/style.css', array('film-maker-lite-style'));
require get_theme_file_path( '/tp-theme-color.php' );
wp_add_inline_style( 'film-maker-lite-child-style',$film_maker_lite_tp_theme_css );
wp_enqueue_script( 'comment-reply', '/wp-includes/js/comment-reply.min.js', array(), false, true );
}
add_action('wp_enqueue_scripts', 'movie_studio_enqueue_styles');
function movie_studio_admin_scripts() {
// Backend CSS
wp_enqueue_style( 'movie-studio-backend-css', get_theme_file_uri( '/assets/css/customizer.css' ) );
}
add_action( 'admin_enqueue_scripts', 'movie_studio_admin_scripts' );
require get_theme_file_path( '/customizer/customize-control-toggle.php' );
define('MOVIE_STUDIO_CREDIT',__('https://www.themespride.com/products/free-movie-wordpress-theme/','movie-studio') );
if ( ! function_exists( 'movie_studio_credit' ) ) {
function movie_studio_credit(){
echo "<a href=".esc_url(MOVIE_STUDIO_CREDIT)." target='_blank'>".esc_html__(get_theme_mod('film_maker_lite_footer_text',__('Film Movie WordPress Theme','movie-studio')))."</a>";
}
}
if ( ! defined( 'FILM_MAKER_LITE_PRO_THEME_NAME' ) ) {
define( 'FILM_MAKER_LITE_PRO_THEME_NAME', esc_html__( 'Movie Studio Pro', 'movie-studio' ));
}
if ( ! defined( 'FILM_MAKER_LITE_PRO_THEME_URL' ) ) {
define( 'FILM_MAKER_LITE_PRO_THEME_URL','https://www.themespride.com/products/studio-wordpress-theme/');
}
if ( ! defined( 'FILM_MAKER_LITE_FREE_THEME_URL' ) ) {
define( 'FILM_MAKER_LITE_FREE_THEME_URL', 'https://www.themespride.com/products/free-movie-wordpress-theme/' );
}
if ( ! defined( 'FILM_MAKER_LITE_RATE_THEME_URL' ) ) {
define( 'FILM_MAKER_LITE_RATE_THEME_URL', 'https://wordpress.org/support/theme/movie-studio/reviews/#new-post' );
}
if ( ! defined( 'FILM_MAKER_LITE_CHANGELOG_THEME_URL' ) ) {
define( 'FILM_MAKER_LITE_CHANGELOG_THEME_URL', get_stylesheet_directory() . '/readme.txt' );
}
if ( ! defined( 'FILM_MAKER_LITE_SUPPORT_THEME_URL' ) ) {
define( 'FILM_MAKER_LITE_SUPPORT_THEME_URL', 'https://wordpress.org/support/theme/movie-studio' );
}
if ( ! defined( 'FILM_MAKER_LITE_DEMO_THEME_URL' ) ) {
define( 'FILM_MAKER_LITE_DEMO_THEME_URL', 'https://page.themespride.com/movie-studio-pro/' );
}
if ( ! defined( 'FILM_MAKER_LITE_DOCS_THEME_URL' ) ) {
define( 'FILM_MAKER_LITE_DOCS_THEME_URL', 'https://page.themespride.com/demo/docs/movie-studio-lite/' );
}
if ( ! defined( 'FILM_MAKER_LITE_DOC_URL' ) ) {
define( 'FILM_MAKER_LITE_DOC_URL','https://page.themespride.com/demo/docs/movie-studio-lite/');
}