chore: init wp-multi-city v0.1.0 with S1 skeleton + S2 design spec

S1 skeleton (cp-8ci, already done):
- wp-multi-city.php with header, constants, hooks bootstrap
- includes/class-plugin.php with PSR-4-ish autoloader, ACF dependency guard
- includes/class-activator.php placeholder
- composer.json (PHP 8.0, phpunit dev)
- README.md with roadmap
- uninstall.php placeholder

S2 design (cp-q7g):
- docs/superpowers/specs/2026-05-12-s2-taxonomy-cpt-acf-design.md
This commit is contained in:
Vladimir Bryzgalov
2026-05-12 17:21:08 +05:00
commit fad5a7d03b
8 changed files with 390 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
declare(strict_types=1);
if (!defined('WP_UNINSTALL_PLUGIN')) exit;
// Stage 8+ (uninstall): drop taxonomy terms, CPT posts, options.
// MVP keeps user data — uninstall only flushes rewrite rules.
flush_rewrite_rules();