Skip to content

Instantly share code, notes, and snippets.

@Crocoblock
Created October 2, 2024 16:29
Show Gist options
  • Save Crocoblock/31aad6ab0e0d2a641bdd849e4418f415 to your computer and use it in GitHub Desktop.
Save Crocoblock/31aad6ab0e0d2a641bdd849e4418f415 to your computer and use it in GitHub Desktop.
JetEngine Profile Builder Register Profile Builder macro
<?php
add_filter( 'jet-engine/profile-builder/user-page-title/macros', function( $macros ) {
$macros['do_shortcode'] = array(
'label' => 'Do Shortcode',
'cb' => function() {
return do_shortcode( '[jet_engine_data dynamic_field_source="query_var" dynamic_field_var_name="test1"]' );
},
'allowed_tabs' => array( 'account_page', 'user_page' ),
);
return $macros;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment