晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/tabatabaei/public_html/wp-content/themes/scapeshot/ |
Upload File : |
<?php
/**
* ScapeShot Pro functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package ScapeShot
*/
if ( ! function_exists( 'scapeshot_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 scapeshot_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
* If you're building a theme based on ScapeShot Pro, use a find and replace
* to change 'scapeshot' to the name of your theme in all the template files.
*/
load_theme_textdomain( 'scapeshot', get_parent_theme_file_path( '/languages' ) );
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* This theme styles the visual editor to resemble the theme style,
* specifically font, colors, and column width.
*
* Google fonts url addition
*
* Font Awesome addition
*/
$editor_style_url = 'assets/css/editor-style.css';
if ( 'light' === get_theme_mod( 'editor_color_scheme', 'dark' ) ) {
$editor_style_url = 'assets/css/editor-style-light.css';
}
add_editor_style( array(
$editor_style_url,
scapeshot_fonts_url(),
)
);
/*
* 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' );
set_post_thumbnail_size( 920, 613, true ); // Ratio 1:1
// Used in single post page
add_image_size( 'scapeshot-single-post-page', 1920, 460, true );
// Used in featured slider
add_image_size( 'scapeshot-slider', 1920, 1080, true );
// Used in Featured Content, Timeline and Categories
add_image_size( 'scapeshot-featured', 666, 444, true ); // Ratio 3:2
// Used in team
add_image_size( 'scapeshot-team', 666, 888, true ); // Ratio 3:4
// Used in logo slider
add_image_size( 'scapeshot-logo-slider', 124, 93, true ); // Ratio 4:3
// Used in Portfolio
add_image_size( 'scapeshot-portfolio', 666, 666, true ); // 1:1
// Used in Service
add_image_size( 'scapeshot-service', 96, 96, true ); // 1:1
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary-menu' => esc_html__( 'Primary', 'scapeshot' ),
'social-menu' => esc_html__( 'Social', 'scapeshot' ),
) );
/*
* 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',
) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support( 'custom-logo', array(
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
) );
/**
* Add support for essential widget image.
*
*/
add_theme_support( 'ew-newsletter-image' );
// 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 support for editor styles.
add_theme_support( 'editor-styles' );
// Add support for responsive embeds.
add_theme_support( 'responsive-embeds' );
// Add custom editor font sizes.
add_theme_support(
'editor-font-sizes',
array(
array(
'name' => esc_html__( 'Extra small', 'scapeshot' ),
'shortName' => esc_html__( 'XS', 'scapeshot' ),
'size' => 13,
'slug' => 'extra-small',
),
array(
'name' => esc_html__( 'Small', 'scapeshot' ),
'shortName' => esc_html__( 'S', 'scapeshot' ),
'size' => 16,
'slug' => 'small',
),
array(
'name' => esc_html__( 'Normal', 'scapeshot' ),
'shortName' => esc_html__( 'M', 'scapeshot' ),
'size' => 20,
'slug' => 'normal',
),
array(
'name' => esc_html__( 'Large', 'scapeshot' ),
'shortName' => esc_html__( 'L', 'scapeshot' ),
'size' => 42,
'slug' => 'large',
),
array(
'name' => esc_html__( 'Extra large', 'scapeshot' ),
'shortName' => esc_html__( 'XL', 'scapeshot' ),
'size' => 58,
'slug' => 'extra-large',
),
array(
'name' => esc_html__( 'Huge', 'scapeshot' ),
'shortName' => esc_html__( 'XL', 'scapeshot' ),
'size' => 70,
'slug' => 'huge',
),
)
);
// Add support for custom color scheme.
add_theme_support( 'editor-color-palette', array(
array(
'name' => esc_html__( 'White', 'scapeshot' ),
'slug' => 'white',
'color' => '#ffffff',
),
array(
'name' => esc_html__( 'Black', 'scapeshot' ),
'slug' => 'black',
'color' => '#000000',
),
array(
'name' => esc_html__( 'Light Black', 'scapeshot' ),
'slug' => 'light-black',
'color' => '#121212',
),
array(
'name' => esc_html__( 'Nero', 'scapeshot' ),
'slug' => 'nero',
'color' => '#282828',
),
array(
'name' => esc_html__( 'Gray', 'scapeshot' ),
'slug' => 'gray',
'color' => '#999999',
),
array(
'name' => esc_html__( 'Dark Orange', 'scapeshot' ),
'slug' => 'dark-orange',
'color' => '#ff8605',
),
array(
'name' => esc_html__( 'Safety Orange', 'scapeshot' ),
'slug' => 'safety-orange',
'color' => '#ff5b02',
),
) );
}
endif;
add_action( 'after_setup_theme', 'scapeshot_setup' );
/**
* Count the number of footer sidebars to enable dynamic classes for the footer
*
*/
function scapeshot_footer_sidebar_class() {
$count = 0;
if ( is_active_sidebar( 'sidebar-2' ) ) {
$count++;
}
if ( is_active_sidebar( 'sidebar-3' ) ) {
$count++;
}
if ( is_active_sidebar( 'sidebar-4' ) ) {
$count++;
}
$class = '';
switch ( $count ) {
case '1':
$class = 'one';
break;
case '2':
$class = 'two';
break;
case '3':
$class = 'three';
break;
}
if ( $class ) {
echo 'class="widget-area footer-widget-area ' . esc_attr( $class ) . '"';
}
}
/**
* 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 scapeshot_content_width() {
$GLOBALS['content_width'] = apply_filters( 'scapeshot_content_width', 920 );
}
add_action( 'after_setup_theme', 'scapeshot_content_width', 0 );
if ( ! function_exists( 'scapeshot_template_redirect' ) ) :
/**
* Set the content width in pixels, based on the theme's design and stylesheet for different value other than the default one
*
* @global int $content_width
*/
function scapeshot_template_redirect() {
$layout = scapeshot_get_theme_layout();
if ( 'no-sidebar-full-width' === $layout ) {
$GLOBALS['content_width'] = 1510;
}
}
endif;
add_action( 'template_redirect', 'scapeshot_template_redirect' );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function scapeshot_widgets_init() {
$args = array(
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h2 class="widget-title">',
'after_title' => '</h2>',
);
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'scapeshot' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'scapeshot' ),
) + $args
);
register_sidebar( array(
'name' => esc_html__( 'Footer 1', 'scapeshot' ),
'id' => 'sidebar-2',
'description' => esc_html__( 'Add widgets here to appear in your footer.', 'scapeshot' ),
) + $args
);
register_sidebar( array(
'name' => esc_html__( 'Footer 2', 'scapeshot' ),
'id' => 'sidebar-3',
'description' => esc_html__( 'Add widgets here to appear in your footer.', 'scapeshot' ),
) + $args
);
register_sidebar( array(
'name' => esc_html__( 'Footer 3', 'scapeshot' ),
'id' => 'sidebar-4',
'description' => esc_html__( 'Add widgets here to appear in your footer.', 'scapeshot' ),
) + $args
);
if ( class_exists( 'Catch_Instagram_Feed_Gallery_Widget' ) || class_exists( 'Catch_Instagram_Feed_Gallery_Widget_Pro' ) ) {
register_sidebar( array(
'name' => esc_html__( 'Instagram', 'scapeshot' ),
'id' => 'sidebar-instagram',
'description' => esc_html__( 'Appears above footer. This sidebar is only for Widget from plugin Catch Instagram Feed Gallery Widget and Catch Instagram Feed Gallery Widget Pro', 'scapeshot' ),
) + $args
);
}
}
add_action( 'widgets_init', 'scapeshot_widgets_init' );
if ( ! function_exists( 'scapeshot_fonts_url' ) ) :
/**
* Register Google fonts for ScapeShot
*
* Create your own scapeshot_fonts_url() function to override in a child theme.
*
* @since ScapeShot 1.0
*
* @return string Google fonts URL for the theme.
*/
function scapeshot_fonts_url() {
/* Translators: If there are characters in your language that are not
* supported by Poppins, translate this to 'off'. Do not translate
* into your own language.
*/
$poppins = _x( 'on', 'Poppins: on or off', 'scapeshot' );
if ( 'on' === $poppins ) {
// Load google font locally.
require_once get_theme_file_path( 'inc/wptt-webfont-loader.php' );
return esc_url_raw( wptt_get_webfont_url( 'https://fonts.googleapis.com/css?family=Poppins::200,300,400,500,600,700,400italic,700italic' ) );
}
}
endif;
/**
* Handles JavaScript detection.
*
* Adds a `js` class to the root `<html>` element when JavaScript is detected.
*
* @since ScapeShot Pro 1.0
*/
function scapeshot_javascript_detection() {
echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n";
}
add_action( 'wp_head', 'scapeshot_javascript_detection', 0 );
/**
* Enqueue scripts and styles.
*/
function scapeshot_scripts() {
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
$path = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? 'assets/js/source/' : 'assets/js/';
// Add custom fonts, used in the main stylesheet.
wp_enqueue_style( 'scapeshot-fonts', scapeshot_fonts_url(), array(), null );
// Theme stylesheet.
wp_enqueue_style( 'scapeshot-style', get_stylesheet_uri(), null, date( 'Ymd-Gis', filemtime( get_template_directory() . '/style.css' ) ) );
// Theme block stylesheet.
wp_enqueue_style( 'scapeshot-block-style', get_theme_file_uri( 'assets/css/blocks.css' ), array( 'scapeshot-style' ), '1.0' );
// Load the html5 shiv.
wp_enqueue_script( 'scapeshot-html5', get_theme_file_uri( $path . 'html5' . $min . '.js' ), array(), '3.7.3' );
wp_script_add_data( 'scapeshot-html5', 'conditional', 'lt IE 9' );
wp_enqueue_script( 'scapeshot-skip-link-focus-fix', get_theme_file_uri( $path . 'skip-link-focus-fix' . $min . '.js' ), array(), '201800703', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
$deps[] = 'jquery';
$enable_portfolio = get_theme_mod( 'scapeshot_portfolio_option', 'disabled' );
if ( scapeshot_check_section( $enable_portfolio ) ){
$deps[] = 'jquery-masonry';
}
$enable_featured_content = get_theme_mod( 'scapeshot_featured_content_option', 'disabled' );
$enable_services = get_theme_mod( 'scapeshot_service_option', 'disabled' );
if ( scapeshot_check_section( $enable_featured_content ) || scapeshot_check_section( $enable_services ) ) {
wp_register_script( 'jquery-match-height', get_theme_file_uri( $path . 'jquery.matchHeight' . $min . '.js' ), array( 'jquery' ), '201800703', true );
$deps[] = 'jquery-match-height';
}
//Slider Scripts
$enable_slider = scapeshot_check_section( get_theme_mod( 'scapeshot_slider_option', 'disabled' ) );
$enable_testimonial_slider = scapeshot_check_section( get_theme_mod( 'scapeshot_testimonial_option', 'disabled' ) );
$enable_header_highlight_slider = scapeshot_check_section( get_theme_mod( 'scapeshot_header_highlight_option', 'disabled' ) ) && ! get_theme_mod( 'scapeshot_header_highlight_slider', 1 );
if ( $enable_slider || $enable_testimonial_slider ) {
// Enqueue owl carousel css. Must load CSS before JS.
wp_enqueue_style( 'owl-carousel-core', get_theme_file_uri( 'assets/css/owl-carousel/owl.carousel.min.css' ), null, '2.3.4' );
wp_enqueue_style( 'owl-carousel-default', get_theme_file_uri( 'assets/css/owl-carousel/owl.theme.default.min.css' ), null, '2.3.4' );
// Enqueue script
wp_enqueue_script( 'owl-carousel', get_theme_file_uri( $path . 'owl.carousel' . $min . '.js' ), array( 'jquery' ), '2.3.4', true );
$deps[] = 'owl-carousel';
}
wp_enqueue_script( 'scapeshot-script', get_theme_file_uri( $path . 'functions' . $min . '.js' ), $deps, '201800703', true );
wp_localize_script( 'scapeshot-script', 'scapeshotOptions', array(
'screenReaderText' => array(
'expand' => esc_html__( 'expand child menu', 'scapeshot' ),
'collapse' => esc_html__( 'collapse child menu', 'scapeshot' ),
'icon' => scapeshot_get_svg( array(
'icon' => 'angle-down',
'fallback' => true,
)
),
),
'iconNavPrev' => scapeshot_get_svg( array(
'icon' => 'angle-left',
'fallback' => true,
)
),
'iconNavNext' => scapeshot_get_svg( array(
'icon' => 'angle-right',
'fallback' => true,
)
),
'rtl' => is_rtl(),
'dropdownIcon' => scapeshot_get_svg( array( 'icon' => 'angle-down', 'fallback' => true ) ),
) );
}
add_action( 'wp_enqueue_scripts', 'scapeshot_scripts' );
/**
* Enqueue editor styles for Gutenberg
*/
function scapeshot_block_editor_styles() {
$block_style_url = 'assets/css/editor-blocks.css';
if ( 'light' === get_theme_mod( 'editor_color_scheme', 'dark' ) ) {
$block_style_url = 'assets/css/editor-blocks-light.css';
}
// Block styles.
wp_enqueue_style( 'scapeshot-block-editor-style', get_theme_file_uri( $block_style_url ) );
// Add custom fonts.
wp_enqueue_style( 'scapeshot-fonts', scapeshot_fonts_url(), array(), null );
}
add_action( 'enqueue_block_editor_assets', 'scapeshot_block_editor_styles' );
if ( ! function_exists( 'scapeshot_excerpt_length' ) ) :
/**
* Sets the post excerpt length to n words.
*
* function tied to the excerpt_length filter hook.
* @uses filter excerpt_length
*
* @since ScapeShot Pro 1.0
*/
function scapeshot_excerpt_length( $length ) {
if ( is_admin() ) {
return $length;
}
// Getting data from Customizer Options
$length = get_theme_mod( 'scapeshot_excerpt_length', 20 );
return absint( $length );
}
endif; //scapeshot_excerpt_length
add_filter( 'excerpt_length', 'scapeshot_excerpt_length', 999 );
if ( ! function_exists( 'scapeshot_excerpt_more' ) ) :
/**
* Replaces "[...]" (appended to automatically generated excerpts) with ... and a option from customizer
*
* @return string option from customizer prepended with an ellipsis.
*/
function scapeshot_excerpt_more( $more ) {
if ( is_admin() ) {
return $more;
}
$more_tag_text = get_theme_mod( 'scapeshot_excerpt_more_text', esc_html__( 'Continue reading', 'scapeshot' ) );
$link = sprintf( '<p><span class="more-link"><a href="%1$s" class="readmore">%2$s</a></span></p>',
esc_url( get_permalink() ),
/* translators: %s: Name of current post */
wp_kses_data( $more_tag_text ) . '<span class="screen-reader-text">' . get_the_title( get_the_ID() ) . '</span>'
);
return $link;
}
endif;
add_filter( 'excerpt_more', 'scapeshot_excerpt_more' );
if ( ! function_exists( 'scapeshot_custom_excerpt' ) ) :
/**
* Adds Continue reading link to more tag excerpts.
*
* function tied to the get_the_excerpt filter hook.
*
* @since ScapeShot Pro 1.0
*/
function scapeshot_custom_excerpt( $output ) {
if ( has_excerpt() && ! is_attachment() ) {
$more_tag_text = get_theme_mod( 'scapeshot_excerpt_more_text', esc_html__( 'Continue reading', 'scapeshot' ) );
$link = sprintf( '<p><span class="more-link"><a href="%1$s" class="readmore">%2$s</a></span></p>',
esc_url( get_permalink() ),
/* translators: %s: Name of current post */
wp_kses_data( $more_tag_text ). '<span class="screen-reader-text">' . get_the_title( get_the_ID() ) . '</span>'
);
$link = ' … ' . $link;
$output .= $link;
}
return $output;
}
endif; //scapeshot_custom_excerpt
add_filter( 'get_the_excerpt', 'scapeshot_custom_excerpt' );
if ( ! function_exists( 'scapeshot_more_link' ) ) :
/**
* Replacing Continue reading link to the_content more.
*
* function tied to the the_content_more_link filter hook.
*
* @since ScapeShot Pro 1.0
*/
function scapeshot_more_link( $more_link, $more_link_text ) {
$more_tag_text = get_theme_mod( 'scapeshot_excerpt_more_text', esc_html__( 'Continue reading', 'scapeshot' ) );
return ' … ' . str_replace( $more_link_text, wp_kses_data( $more_tag_text ), $more_link );
}
endif; //scapeshot_more_link
add_filter( 'the_content_more_link', 'scapeshot_more_link', 10, 2 );
/**
* SVG icons functions and filters
*/
require get_parent_theme_file_path( '/inc/icon-functions.php' );
/**
* Implement the Custom Header feature
*/
require get_parent_theme_file_path( '/inc/custom-header.php' );
/**
* Custom template tags for this theme
*/
require get_parent_theme_file_path( '/inc/template-tags.php' );
/**
* Functions which enhance the theme by hooking into WordPress
*/
require get_parent_theme_file_path( '/inc/template-functions.php' );
/**
* Customizer additions
*/
require get_parent_theme_file_path( '/inc/customizer/customizer.php' );
/**
* Color Scheme additions
*/
require get_parent_theme_file_path( '/inc/color-scheme.php' );
/**
* Load Jetpack compatibility file
*/
if ( defined( 'JETPACK__VERSION' ) ) {
require get_parent_theme_file_path( '/inc/jetpack.php' );
}
/**
* Load Social Widgets
*/
require get_parent_theme_file_path( '/inc/widget-social-icons.php' );
/**
* Load TGMPA
*/
require get_parent_theme_file_path( '/inc/class-tgm-plugin-activation.php' );
/**
* Load Theme About Page
*/
require get_parent_theme_file_path( '/inc/about.php' );
/**
* Register the required plugins for this theme.
*
* In this example, we register five plugins:
* - one included with the TGMPA library
* - two from an external source, one from an arbitrary source, one from a GitHub repository
* - two from the .org repo, where one demonstrates the use of the `is_callable` argument
*
* The variables passed to the `tgmpa()` function should be:
* - an array of plugin arrays;
* - optionally a configuration array.
* If you are not changing anything in the configuration array, you can remove the array and remove the
* variable from the function call: `tgmpa( $plugins );`.
* In that case, the TGMPA default settings will be used.
*
* This function is hooked into `tgmpa_register`, which is fired on the WP `init` action on priority 10.
*/
function scapeshot_register_required_plugins() {
/*
* Array of plugin arrays. Required keys are name and slug.
* If the source is NOT from the .org repo, then source is also required.
*/
$plugins = array(
// Catch Web Tools.
array(
'name' => 'Catch Web Tools', // Plugin Name, translation not required.
'slug' => 'catch-web-tools',
),
// Catch IDs
array(
'name' => 'Catch IDs', // Plugin Name, translation not required.
'slug' => 'catch-ids',
),
// To Top.
array(
'name' => 'To top', // Plugin Name, translation not required.
'slug' => 'to-top',
),
// Catch Gallery.
array(
'name' => 'Catch Gallery', // Plugin Name, translation not required.
'slug' => 'catch-gallery',
),
);
if ( ! class_exists( 'Catch_Infinite_Scroll_Pro' ) ) {
$plugins[] = array(
'name' => 'Catch Infinite Scroll', // Plugin Name, translation not required.
'slug' => 'catch-infinite-scroll',
);
}
if ( ! class_exists( 'Essential_Content_Types_Pro' ) ) {
$plugins[] = array(
'name' => 'Essential Content Types', // Plugin Name, translation not required.
'slug' => 'essential-content-types',
);
}
if ( ! class_exists( 'Essential_Widgets_Pro' ) ) {
$plugins[] = array(
'name' => 'Essential Widgets', // Plugin Name, translation not required.
'slug' => 'essential-widgets',
);
}
if ( ! class_exists( 'Catch_Instagram_Feed_Gallery_Widget_Pro' ) ) {
$plugins[] = array(
'name' => 'Catch Instagram Feed Gallery & Widget', // Plugin Name, translation not required.
'slug' => 'catch-instagram-feed-gallery-widget',
);
}
/*
* Array of configuration settings. Amend each line as needed.
*
* TGMPA will start providing localized text strings soon. If you already have translations of our standard
* strings available, please help us make TGMPA even better by giving us access to these translations or by
* sending in a pull-request with .po file(s) with the translations.
*
* Only uncomment the strings in the config array if you want to customize the strings.
*/
$config = array(
'id' => 'scapeshot', // Unique ID for hashing notices for multiple instances of TGMPA.
'default_path' => '', // Default absolute path to bundled plugins.
'menu' => 'tgmpa-install-plugins', // Menu slug.
'has_notices' => true, // Show admin notices or not.
'dismissable' => true, // If false, a user cannot dismiss the nag message.
'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag.
'is_automatic' => false, // Automatically activate plugins after installation or not.
'message' => '', // Message to output right before the plugins table.
);
tgmpa( $plugins, $config );
}
add_action( 'tgmpa_register', 'scapeshot_register_required_plugins' );
/**
* Checks if there are options already present from free version and adds it to the Pro theme options
*
* @since ScapeShot Pro 1.0
* @hook after_theme_switch
*/
function scapeshot_setup_options( $old_theme_name ) {
if ( $old_theme_name ) {
$old_theme_slug = sanitize_title( $old_theme_name );
$free_version_slug = array(
'scapeshot',
);
$pro_version_slug = 'scapeshot';
$free_options = get_option( 'theme_mods_' . $old_theme_slug );
// Perform action only if theme_mods_scapeshot free version exists.
if ( in_array( $old_theme_slug, $free_version_slug ) && $free_options && '1' !== get_theme_mod( 'free_pro_migration' ) ) {
$new_options = wp_parse_args( get_theme_mods(), $free_options );
if ( update_option( 'theme_mods_' . $pro_version_slug, $free_options ) ) {
// Set Migration Parameter to true so that this script does not run multiple times.
set_theme_mod( 'free_pro_migration', '1' );
}
}
}
}
add_action( 'after_switch_theme', 'scapeshot_setup_options' );
/**
* Disable WooCommerce CSS.
*/
add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );