André Amorim

Crafting Web Experiences

//

Create a custom shortcode for WordPress

<?php
add_shortcode('your_code', 'my_function');

function my_function() {
    $message = 'Hello world!';
    return $message;
}

Published date:

Modified date: