Extended ACF

Résumé Support

Extended ACF est une librairie qui va vous permettre de générer vos champs ACF en un clin d'oeil gràce à un système déclaratif.

if (!function_exists('register_extended_field_group')) { return; } register_extended_field_group([ 'title' => 'Bloc article', 'location' => [ \WordPlate\Acf\Location::if('post_type', 'post') ], 'fields' => [ \WordPlate\Acf\Fields\Tab::make(__('Premier onglet', 'montheme'))->placement('left'), \WordPlate\Acf\Fields\Text::make('Price', 'price')->required(), \WordPlate\Acf\Fields\Tab::make('Second onglet'), \WordPlate\Acf\Fields\Wysiwyg::make('Content', 'content'), \WordPlate\Acf\Fields\TrueFalse::make('Mettre en avant', 'featured')->stylisedUi('Oui', 'Non') ] ]);