*/ // Get the options. $section5_usage = get_theme_mod( 'canuck_section5_usage', 'normal' ); $section5_text = stripslashes( get_theme_mod( 'canuck_section5_text', '' ) ); $section5_shortcode = stripslashes( get_theme_mod( 'canuck_section5_shortcode', '' ) ); $section5_include_link = get_theme_mod( 'canuck_include_section5_button', false ); $section5_link = get_theme_mod( 'canuck_section5_button_link', '#' ); $section5_button_label = get_theme_mod( 'canuck_section5_button_name', " " . __( 'more', 'canuck' ) ); $sec5_bg_image = get_theme_mod( 'canuck_section5_background_image', '' ); $sec5_use_parallax = get_theme_mod( 'canuck_section5_use_parallax', false ); if ( '' !== $sec5_bg_image && false !== $sec5_use_parallax ) { ?>
'; echo wp_kses_post( $section5_text ); echo '
'; } if ( true === $section5_include_link ) { if ( '' === $section5_button_label ) { $section5_button_label = " " . __( 'more', 'canuck' ); } echo ''; } echo '
'; if ( 'shortcode' === $section5_usage ) { echo '
'; echo do_shortcode( wp_kses_post( $section5_shortcode ) ); echo '
'; } elseif ( 'widgetized' === $section5_usage ) { echo '
'; if ( !dynamic_sidebar('canuck_home_section5_sidebar') ) { echo esc_html__( 'Section 5 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 '
'; } ?>