| 1 |
<?php |
| 2 |
|
| 3 |
namespace WPDeveloper\BetterDocs\Admin\Customizer\Controls; |
| 4 |
|
| 5 |
use WP_Customize_Control; |
| 6 |
|
| 7 |
class TitleControl extends WP_Customize_Control { |
| 8 |
/** |
| 9 |
* Control name. |
| 10 |
* @var string |
| 11 |
*/ |
| 12 |
public $type = 'betterdocs-title'; |
| 13 |
|
| 14 |
/** |
| 15 |
* Render the control's content. |
| 16 |
* |
| 17 |
* @version 1.0.0 |
| 18 |
*/ |
| 19 |
public function render_content() { |
| 20 |
betterdocs()->views->get( 'admin/customizer/controls/title', [ 'control' => $this ] ); |
| 21 |
} |
| 22 |
} |
| 23 |
|