mmirus / acf-flexible-content-title
Display the content of a field in the title bar of your Advanced Custom Fields flexible content sections.
Installs: 2 551
Dependents: 0
Suggesters: 0
Security: 0
Stars: 34
Watchers: 3
Forks: 1
Open Issues: 0
Type:wordpress-plugin
Requires
- php: >=5.3.0
- composer/installers: ^1.6
This package is auto-updated.
Last update: 2024-10-11 14:53:50 UTC
README
Display the content of a text sub field in the title bar of your Advanced Custom Fields flexible content sections to make editing your page sections easier to navigate.
I recommend pairing this with a plugin that will help you collapse all of your flexible content sections, such as ACF Repeater & Flexible Content Collapser.
Usage
This plugin looks for a sub field named section_title
in the flexible content field. Add a field with that name to your layouts, or use the filter to change which sub field is used.
Changing the Field Used
You can filter that as follows if you wish to use a different sub field:
// change the sub field used in flexible content field title add_filter('acf_flexible_content_title_field', function($title_field, $flexible_field, $layout) { return 'my_text_sub_field'; }, 10, 3);
Arguments
$title_field
(string) the name of the title field to be displayed$flexible_field
(array) the flexible content field settings$layout
(array) the layout settings
Because the flexible content field and layout settings arrays are passed, if desired you could add conditional logic and specify different title fields for different flexible content fields or layouts.
Installation
There are three options for installing this plugin:
- With composer from Packagist:
composer require mmirus/acf-flexible-content-title
- With GitHub Updater
- By downloading the latest release ZIP from this repository and installing it like any normal WordPress plugin
Screenshots
Expanded flexible content layout
Overview of flexible content layouts