Create a custom shortcode for WordPress
<?php
add_shortcode('your_code', 'my_function');
function my_function() {
$message = 'Hello world!';
return $message;
}
Source: Create a shortcode in WordPress (github.com)
<?php
add_shortcode('your_code', 'my_function');
function my_function() {
$message = 'Hello world!';
return $message;
}
Source: Create a shortcode in WordPress (github.com)
You must be logged in to post a comment.
For shortcode with parameters, check this: https://developer.wordpress.org/plugins/shortcodes/shortcodes-with-parameters/
https://wordpress.stackexchange.com/questions/172919/how-to-create-a-shortcode-with-1-parameter-atts