| Name | Size | Mode | Actions |
|---|---|---|---|
| active-callback.php | 4079 | 0644 | editdlrm |
| appearance.php | 8227 | 0644 | editdlrm |
| customizer.php | 2632 | 0644 | editdlrm |
| footer.php | 2723 | 0644 | editdlrm |
| frontpage.php | 36502 | 0644 | editdlrm |
| general.php | 22320 | 0644 | editdlrm |
| info.php | 3828 | 0644 | editdlrm |
| layout.php | 15764 | 0644 | editdlrm |
| sanitization-functions.php | 2262 | 0644 | editdlrm |
| site.php | 3376 | 0644 | editdlrm |
/home/desid573/verdenaturopathy.com.au/wp-content/themes/blossom-coach/inc/customizer/info.php (3828B)
'; $theme_info .= sprintf( __( 'Demo Link: %1$sClick here.%2$s', 'blossom-coach' ), '', '' ); $theme_info .= '
'; $theme_info .= sprintf( __( 'Documentation Link: %1$sClick here.%2$s', 'blossom-coach' ), '', '' ); $theme_info .= '
'; $wp_customize->add_control( new Blossom_Coach_Note_Control( $wp_customize, 'theme_info_theme', array( 'section' => 'theme_info', 'description' => $theme_info ) ) ); } add_action( 'customize_register', 'blossom_coach_customizer_theme_info' ); if( class_exists( 'WP_Customize_Section' ) ) : /** * Adding Go to Pro Section in Customizer * https://github.com/justintadlock/trt-customizer-pro */ class Blossom_Coach_Customize_Section_Pro extends WP_Customize_Section { /** * The type of customize section being rendered. * * @since 1.0.0 * @access public * @var string */ public $type = 'blossom-coach-pro-section'; /** * Custom button text to output. * * @since 1.0.0 * @access public * @var string */ public $pro_text = ''; /** * Custom pro button URL. * * @since 1.0.0 * @access public * @var string */ public $pro_url = ''; /** * Add custom parameters to pass to the JS via JSON. * * @since 1.0.0 * @access public * @return void */ public function json() { $json = parent::json(); $json['pro_text'] = $this->pro_text; $json['pro_url'] = esc_url( $this->pro_url ); return $json; } /** * Outputs the Underscore.js template. * * @since 1.0.0 * @access public * @return void */ protected function render_template() { ?>