// Add Shortcode
function subform() {
// Get the current user's display name
$user_display_name = wp_get_current_user()->user_firstname;
// Get the blog name
$blog_name = get_bloginfo( 'name' );
// Build the form output
$output = '
Hey ' . esc_html($user_display_name) . ', welcome to ' . esc_html($blog_name) . '! You can subscribe to our newsletter here:
'; $output .= ''; // Return the output instead of echo return $output; } add_shortcode( 'subscriptionform', 'subform' ); shortcode.txt Affichage de shortcode.txt