HTMLy v3.0.6: Custom fields
Posted in Updates by danpros on 19 March 2025
What's New
- Custom field with simple form builder. Supported form type: text, textarea, checkbox, and select.
- Twentyfifteen theme fix (#873)
- Doks theme menu fix.
- New variable
$p->raw
and $author->raw
- Various improvements.
Note for Custom Fields:
With these custom fields you can add extra, specific data fields to your content. Use get_field()
function in your template to display the data.
- Post, Page, Subpage:
<?php echo get_field('field_name', $p->raw);?>
- Profile:
<?php echo get_field('field_name', $author->raw);?>
What's Changed
New Contributors
Full Changelog: v3.0.5...v3.0.6
Tags: Release Feature