Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

OWT Shortcode – Part 1

// Add Shortcode
function wpl_owt_shortcode_part1() {

	return "This is a simple plugin shortcode that we have created";

}
add_shortcode( 'owt', 'wpl_owt_shortcode_part1' );