Skip to content

Instantly share code, notes, and snippets.

@yuriinalivaiko
Created April 10, 2025 16:51
Show Gist options
  • Save yuriinalivaiko/90d2777af68f65b2524adbe74dcfadd8 to your computer and use it in GitHub Desktop.
Save yuriinalivaiko/90d2777af68f65b2524adbe74dcfadd8 to your computer and use it in GitHub Desktop.
Ultimate Member customization. Apply shortcodes in the "Content Block" field.
<?php
// apply shortcodes in the "Content Block" field.
add_filter( 'um_get_field_block', function( $data ) {
if ( array_key_exists( 'content', $data ) ) {
$data['content'] = apply_shortcodes( $data['content'] );
}
return $data;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment