michaellevelup

Budibase

Jun 21st, 2022 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. function kt_budibaseheader_api( $args ) {
  2.  
  3. if(is_page('_YOUR_PAGE_SLUG_')){
  4.     $args['headers'] = array(
  5.     'accept' => 'application/json',
  6.     'content-type' => 'application/json',
  7.     'x-budibase-api-key' => 'wwww',
  8.     'x-budibase-app-id' => 'dddd',
  9.     );
  10. }
  11.  
  12. return $args;
  13. }
  14.  
  15. add_filter('kadence_blocks_pro_webhook_args', 'kt_budibaseheader_api');
Add Comment
Please, Sign In to add comment