*/ // Get the options. $section7_usage = get_theme_mod( 'canuck_section7_usage', 'normal' ); $section7_text = stripslashes( get_theme_mod( 'canuck_section7_text', '' ) ); $section7_shortcode = stripslashes( get_theme_mod( 'canuck_section7_shortcode', '' ) ); $section7_include_link = get_theme_mod( 'canuck_include_section7_button', false ); $section7_link = get_theme_mod( 'canuck_section7_button_link', '#' ); $section7_button_label = get_theme_mod( 'canuck_section7_button_name', " " . __( 'more', 'canuck' ) ); $sec7_bg_image = get_theme_mod( 'canuck_section7_background_image', '' ); $sec7_use_parallax = get_theme_mod( 'canuck_section7_use_parallax', false ); if ( '' !== $sec7_bg_image && false !== $sec7_use_parallax ) { ?>
'; echo wp_kses_post( $section7_text ); echo '
'; } if ( true === $section7_include_link ) { if ( '' === $section7_button_label ) { $section7_button_label = " " . __( 'more', 'canuck' ); } echo ''; } echo '
'; if ( 'shortcode' === $section7_usage ) { echo '
'; echo do_shortcode( wp_kses_post( $section7_shortcode ) ); echo '
'; } elseif ( 'widgetized' === $section7_usage ) { echo '
'; if ( ! dynamic_sidebar( 'canuck_home_section7_sidebar' ) ) { echo esc_html__( 'Section 7 is set up as a widget area.', 'canuck' ) . '
' . esc_html__( 'Go to Appearance->Widgets or the Customizer Widgets panel and add a widget to Home Page Section 1.', 'canuck' ) . ''; } echo '
'; } ?>