<?php

// Define the function that will handle the shortcode
function hello_world_shortcode() {
    return 'Hello, Mom!';
}

// Register the shortcode
add_shortcode('hello-world', 'hello_world_shortcode');
?>