File: //proc/self/root/home/bpw3460lz1vy/www/wp-content/themes/creationwp/functions.php
<?php
/**
* Theme functions and definitions
*
* @package Interior Decor
*/
/**
* After setup theme hook
*/
function creationwp_theme_setup(){
/*
* Make child theme available for translation.
* Translations can be filed in the /languages/ directory.
*/
load_child_theme_textdomain( 'creationwp', get_stylesheet_directory() . '/languages' );
require get_stylesheet_directory() . '/inc/customizer/creationwp-customizer-options.php';
}
add_action( 'after_setup_theme', 'creationwp_theme_setup' );
/**
* Load assets.
*/
function creationwp_theme_css() {
wp_enqueue_style( 'creationwp-parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style('creationwp-child-style', get_stylesheet_directory_uri() . '/style.css');
wp_enqueue_style('creationwp-default-css', get_stylesheet_directory_uri() . "/assets/css/theme-default.css" );
}
add_action( 'wp_enqueue_scripts', 'creationwp_theme_css', 99);
/**
* Import Options From Parent Theme
*
*/
function creationwp_parent_theme_options() {
$designexo_mods = get_option( 'theme_mods_designexo' );
if ( ! empty( $designexo_mods ) ) {
foreach ( $designexo_mods as $designexo_mod_k => $designexo_mod_v ) {
set_theme_mod( $designexo_mod_k, $designexo_mod_v );
}
}
}
add_action( 'after_switch_theme', 'creationwp_parent_theme_options' );
/**
* Fresh site activate
*
*/
$fresh_site_activate = get_option( 'fresh_creationwp_site_activate' );
if ( (bool) $fresh_site_activate === false ) {
set_theme_mod( 'designexo_menu_container_size', 'container-full' );
set_theme_mod( 'designexo_blog_front_container_size', 'container-full' );
set_theme_mod( 'designexo_typography_disabled', true );
set_theme_mod( 'designexo_typography_h1_font_family', 'Cairo' );
set_theme_mod( 'designexo_typography_h2_font_family', 'Cairo' );
set_theme_mod( 'designexo_typography_h3_font_family', 'Cairo' );
set_theme_mod( 'designexo_typography_h4_font_family', 'Cairo' );
set_theme_mod( 'designexo_typography_h5_font_family', 'Cairo' );
set_theme_mod( 'designexo_typography_h6_font_family', 'Cairo' );
set_theme_mod( 'designexo_typography_widget_title_font_family', 'Cairo' );
set_theme_mod( 'designexo_theme_info_layout', 'designexo_theme_info_layout2' );
set_theme_mod( 'designexo_service_layout', 'designexo_service_layout3' );
set_theme_mod( 'designexo_project_layout', 'designexo_project_layout3' );
set_theme_mod( 'designexo_testimonial_layout', 'designexo_testimonial_layout1' );
set_theme_mod( 'designexo_blog_column_layout', '3' );
update_option( 'fresh_creationwp_site_activate', true );
}
/**
* Custom background
*
*/
function creationwp_custom_background_setup() {
add_theme_support( 'custom-background', apply_filters( 'creationwp_custom_background_args', array(
'default-color' => '202020',
'default-image' => '',
) ) );
}
add_action( 'after_setup_theme', 'creationwp_custom_background_setup' );
/**
* Custom Theme Script
*/
function creationwp_custom_theme_css() {
$creationwp_testomonial_background_image = get_theme_mod('designexo_testomonial_background_image');
?>
<style type="text/css">
<?php if($creationwp_testomonial_background_image != null) : ?>
.theme-testimonial {
background-image: url(<?php echo esc_url( $creationwp_testomonial_background_image ); ?>);
background-size: cover;
background-position: center center;
}
<?php endif; ?>
</style>
<?php }
add_action('wp_footer','creationwp_custom_theme_css');
if ( ! function_exists( 'creationwp_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog.
*
* @see creationwp_custom_header_setup().
*/
function creationwp_header_style() {
$header_text_color = get_header_textcolor();
/*
* If no custom options for text are set, let's bail.
* get_header_textcolor() options: Any hex value, 'blank' to hide text. Default: add_theme_support( 'custom-header' ).
*/
if ( get_theme_support( 'custom-header', 'default-text-color' ) === $header_text_color ) {
return;
}
// If we get this far, we have custom styles. Let's do this.
?>
<style type="text/css">
<?php
// Has the text been hidden?
if ( ! display_header_text() ) :
?>
.site-title,
.site-description {
position: absolute;
clip: rect(1px, 1px, 1px, 1px);
}
<?php
// If the user has set a custom color for the text use that.
else :
?>
.site-title a,
.site-description {
color: #<?php echo esc_attr( $header_text_color ); ?> !important;
}
<?php endif; ?>
</style>
<?php
}
endif;