📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 15:04:57
📂
/ (Root)
/
home
/
apkbfjox
/
rr3.pro
/
wp-content
/
themes
/
kadence
/
inc
/
customizer
/
react
/
src
/
title
📍 /home/apkbfjox/rr3.pro/wp-content/themes/kadence/inc/customizer/react/src/title
🔄 Refresh
✏️
Editing: title-component.js
Writable
import PropTypes from 'prop-types'; import { __ } from '@wordpress/i18n'; const { Component } = wp.element; const { ToggleControl } = wp.components; class TitleComponent extends Component { constructor(props) { super( props ); } render() { return ( <div className="kadence-control-field kadence-title-control"> { this.props.control.params.label && ( <span class="customize-control-title"> { this.props.control.params.label } </span> ) } { this.props.control.params.description && ( <span class="customize-control-description"> { this.props.control.params.description } </span> ) } { this.props.control.renderNotice() } </div> ); } } TitleComponent.propTypes = { control: PropTypes.object.isRequired }; export default TitleComponent;
💾 Save Changes
❌ Cancel