<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
getolympus / olympus-dionysos-field-textarea example snippets
return \GetOlympus\Dionysos\Field\Textarea::build('my_textarea_field_id', [
'title' => 'How do Penguins drink their cola?',
'default' => 'On the rocks.',
'description' => 'A simple question to know if you will be able to survive to the Penguin domination.',
'counter' => true,
'placeholder' => 'Tell us how?',
'readonly' => false,
'rows' => 8,
/**
* Texts definition
* @see the `Texts definition` section below
*/
't_length_label' => 'characters.',
]);
// Get textarea from Database
$textarea = get_option('my_textarea_field_id', '');
// Display textarea in HTML tag
echo '<pre>'.htmlspecialchars($textarea).'</pre>';
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.