Skip to content

Instantly share code, notes, and snippets.

@absowoot
Created October 6, 2022 19:11
Show Gist options
  • Save absowoot/5ed1826a0d2b0e690e2f756e655d0e9d to your computer and use it in GitHub Desktop.
Save absowoot/5ed1826a0d2b0e690e2f756e655d0e9d to your computer and use it in GitHub Desktop.
<?php
add_filter('builder/settings/page/controls_data', function ($data) {
$data['controlGroups']['landing-page-options'] = array(
'title' => 'Landing Page Options',
);
$data['controls']['testField'] = array(
'group' => 'landing-page-options',
'type' => 'text',
'label' => 'My Test Field',
);
return $data;
});
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment