<?php
/**
 * Plugin Name: BW Hello World
 * Description: Minimal smoke-test plugin. Registers the [bw_hello] shortcode.
 * Version:     0.1.0
 * Author:      Bowden Works
 * License:     GPL-2.0-or-later
 * Text Domain: bw-hello-world
 */

defined( 'ABSPATH' ) || exit;

add_shortcode( 'bw_hello', function () {
	return '<p>Hello World from BW Hello World.</p>';
} );
