getolympus/olympus-dionysos-field-title

Title field, this component is a part of the Olympus Dionysos fields.

v0.0.2 2023-12-17 20:55 UTC

This package is auto-updated.

Last update: 2024-04-18 21:43:43 UTC


README

field-title.png

Dionysos Title Field

Olympus Component CodeFactor Grade Packagist Version MIT

This component is a part of the Olympus Dionysos fields for WordPress.

composer require getolympus/olympus-dionysos-field-title

Table of contents

Field initializationVariables definitionTitle displayRelease historyContributing

Field initialization

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,
]);

Variables definition

Variable Type Default value if not set Accepted values
title String 'Title' empty
class String empty empty
level Integer 2 1 to 6

Title display

The component will display:

<h{{ level }} class="zeus-title {{ class }}">{{ title|raw }}</h{{ level }}>

Release History

Version Note
0.0.2 Clean documentation
0.0.1 Initial commit

Contributing

  1. Fork it (https://github.com/GetOlympus/olympus-dionysos-field-title/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

Built with ♥ by Achraf Chouk ~ (c) since a long time.