Skip to content

Instantly share code, notes, and snippets.

@reachkamrul
Last active November 5, 2022 00:44
Show Gist options
  • Save reachkamrul/6d341dde9df0e8205fa980a22737264b to your computer and use it in GitHub Desktop.
Save reachkamrul/6d341dde9df0e8205fa980a22737264b to your computer and use it in GitHub Desktop.
/*
* Get user id
* {my_id}
*/
add_filter('fluentform_editor_shortcode_callback_my_id', function ($val) {
$current_user_id = get_current_user_id();
return $current_user_id;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment