This plugin provides a field type for choosing sections. This allows content administrators to select from available singles, channels, and structures. Entries using this field can then access these selections in their templates.
cd /path/to/project
composer require charliedev/section-field
Settings -> Plugins
page in the Craft control panel.--- or ---
./craft install/plugin section-field
The form controls for a section field are generated according to that individual field's configuration. A field is configured with a whitelist of allowed sections to use, and sections available on an entry are a combination of the whitelist and the sections the current user is allowed to edit.
If only one selection is allowed, the field is a set of radio buttons. If the field is not required, an additional "None" option is provided, and will be selected by default.
If multiple selections are allowed, the field is a set of checkboxes. If the field is required, at least one box must be checked.
In a Twig template, you can retrieve the data from a section field as you would from any other field type. If the field is configured to allow a single selection, it will provide the section ID as an integer. If the field is configured to allow multiple selections, it will provide the section ID(s) as an array.
See the example below, where mySectionField
is a section field that determines which section(s) to display entries from.
{% set sections = entry.mySectionField %}
{% set sectionEntries = craft.entries.sectionId(sections) %}
{% for sectionEntry in sectionEntries %}
{# Display sectionEntry #}
{% endfor %}
Built for Craft CMS by Charlie Development