' . __( 'Mizan Themes', 'beauty-cosmetic-shop' ) . '' ); ?>
ID, 'beauty_cosmetic_shop_theme_settings', true ); if ( isset( $post_options['post_layout'] ) && ! empty( $post_options['post_layout'] ) ) { $global_layout = $post_options['post_layout']; } } // Include primary sidebar. if ( 'no-sidebar' !== $global_layout ) { get_sidebar(); } // Include Secondary sidebar. switch ( $global_layout ) { case 'three-columns': get_sidebar( 'secondary' ); break; default: break; } // Include Secondary sidebar. switch ( $global_layout ) { case 'four-columns': get_sidebar( 'secondary' ); break; default: break; } } endif; add_action( 'beauty_cosmetic_shop_action_sidebar', 'beauty_cosmetic_shop_add_sidebar' ); //////////////////////////////////////// single page if ( ! function_exists( 'beauty_cosmetic_shop_add_image_in_single_display' ) ) : /** * Add image in single post. * * @since 1.0.0 */ function beauty_cosmetic_shop_add_image_in_single_display() { global $post; if ( has_post_thumbnail() ) { $values = get_post_meta( $post->ID, 'beauty_cosmetic_shop_theme_settings', true ); $beauty_cosmetic_shop_theme_settings_single_image = isset( $values['single_image'] ) ? esc_attr( $values['single_image'] ) : ''; if ( ! $beauty_cosmetic_shop_theme_settings_single_image ) { $beauty_cosmetic_shop_theme_settings_single_image = beauty_cosmetic_shop_get_option( 'single_image' ); } if ( 'disable' !== $beauty_cosmetic_shop_theme_settings_single_image ) { $args = array( 'class' => 'aligncenter', ); the_post_thumbnail( esc_attr( $beauty_cosmetic_shop_theme_settings_single_image ), $args ); } } } endif; add_action( 'beauty_cosmetic_shop_single_image', 'beauty_cosmetic_shop_add_image_in_single_display' ); if ( ! function_exists( 'beauty_cosmetic_shop_footer_goto_top' ) ) : /** * Go to top. * * @since 1.0.0 */ function beauty_cosmetic_shop_footer_goto_top() { $show_scroll_to_top = beauty_cosmetic_shop_get_option( 'show_scroll_to_top' ); if ( true === $show_scroll_to_top ) : echo ' '; endif; } endif; add_action( 'beauty_cosmetic_shop_action_after', 'beauty_cosmetic_shop_footer_goto_top', 20 );