This component is a part of the Olympus Dionysos fields for WordPress.
composer require getolympus/olympus-dionysos-field-title
Field initialization • Variables definition • Title display • Release history • Contributing
Use the following lines to add a title field
in your WordPress admin pages or custom post type's meta fields:
Note the $identifier
(first ::build()
parameter) is set to false
because no value is stored in database.
return \GetOlympus\Dionysos\Field\Title::build(false, [
'title' => 'The Dark Knight',
'class' => 'robin',
'level' => 2,
]);
Variable | Type | Default value if not set | Accepted values |
---|---|---|---|
title |
String | 'Title' |
empty |
class |
String | empty | empty |
level |
Integer | 2 | 1 to 6 |
The component will display:
<h{{ level }} class="zeus-title {{ class }}">{{ title|raw }}</h{{ level }}>
Version | Note |
---|---|
0.0.2 | Clean documentation |
0.0.1 | Initial commit |
- Fork it (https://github.com/GetOlympus/olympus-dionysos-field-title/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request
Built with ♥ by Achraf Chouk ~ (c) since a long time.