include_admin_print_footer = $args['include_admin_print_footer'];
}
if (!empty($args['teeny'])) {
$this->teeny = $args['teeny'];
}
}
/**
* Render the content on the theme customizer page
*/
public function render_content() {
?>
label); ?>
link(); ?> value="value()); ?>">
$this->id,
'teeny' => $this->teeny,
'textarea_rows' => 6
);
$page_content = $this->value();
wp_editor($page_content, $this->id, $settings);
if ($this->include_admin_print_footer === true) {
do_action('admin_print_footer_scripts');
}
}
}