e0b87dde0c
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
342 B
PHP
20 lines
342 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace WPMultiCity;
|
|
|
|
final class PostType
|
|
{
|
|
public const SLUG = 'shortcode-town';
|
|
|
|
public static function register(): void
|
|
{
|
|
add_action('init', [self::class, 'do_register']);
|
|
}
|
|
|
|
public static function do_register(): void
|
|
{
|
|
// Implementation filled in Task 9.
|
|
}
|
|
}
|