Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
byp
/
wp-content
/
plugins
/
carousel-slider
/
includes
/
Supports
/
FormFields
:
Html.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace CarouselSlider\Supports\FormFields; /** * Html class */ class Html extends BaseField { /** * Render field * * @return string */ public function render(): string { $html = $this->get_setting( 'html', '' ); if ( ! is_string( $html ) ) { return ''; } return $html; } }