Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function __construct() |
||
25 | { |
||
26 | $customToolbars = $this->wysiwygToolbars(); |
||
27 | add_filter('acf/rest_api/post/get_fields', [$this, 'acfGetFields']); |
||
|
|||
28 | add_filter('acf/fields/wysiwyg/toolbars', function (array $toolbars) use ($customToolbars) { |
||
29 | return array_merge($toolbars, $customToolbars); |
||
30 | }); |
||
31 | } |
||
32 | |||
56 |