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 533

Dependents: 0

Suggesters: 0

Security: 0

Stars: 34

Watchers: 3

Forks: 1

Open Issues: 0

Type:wordpress-plugin

1.0.0 2018-11-10 20:36 UTC

This package is auto-updated.

Last update: 2024-04-11 13:38:18 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.

Section Title Field

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:

  1. With composer from Packagist: composer require mmirus/acf-flexible-content-title
  2. With GitHub Updater
  3. By downloading the latest release ZIP from this repository and installing it like any normal WordPress plugin

Screenshots

Expanded flexible content layout

Expanded Flexible Content Layout with Title Field

Overview of flexible content layouts

Expanded Flexible Content Layout with Title Field