<?php

// Define the function to create the shortcode
function create_hello_world_shortcode() {
    return 'Hello World';
}
// Add a shortcode that will execute the function when it is called
add_shortcode('hello_world', 'create_hello_world_shortcode');
?>