From d36408a4a6205c111262ce3b031121465fd46d37 Mon Sep 17 00:00:00 2001 From: Vladimir Bryzgalov Date: Sun, 17 May 2026 17:02:11 +0500 Subject: [PATCH] release: 1.0.1 --- readme.txt | 2 +- wp-multi-city.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index 929c53f..de3bb25 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: multisite, multi-city, taxonomy, acf, shortcode Requires at least: 6.0 Tested up to: 6.9 Requires PHP: 8.0 -Stable tag: 1.0.0 +Stable tag: 1.0.1 License: GPLv2 or later Мультигородская подсистема: одна WP-инсталляция обслуживает несколько городов по схеме /{city}/{path}/ с подстановками контента и URL. diff --git a/wp-multi-city.php b/wp-multi-city.php index 48a06f0..5c69b0d 100644 --- a/wp-multi-city.php +++ b/wp-multi-city.php @@ -2,7 +2,7 @@ /** * Plugin Name: WP Multi City * Description: Мультигородская подсистема: taxonomy town, шорткоды для подстановки по городу, роутер /{city}/{path}/, page-clones по городам. - * Version: 1.0.0 + * Version: 1.0.1 * Author: Vladimir Bryzgalov * Requires PHP: 8.0 * Requires at least: 6.0 @@ -18,7 +18,7 @@ if (!defined('ABSPATH')) exit; defined('WPMC_PLUGIN_FILE') || define('WPMC_PLUGIN_FILE', __FILE__); defined('WPMC_PLUGIN_DIR') || define('WPMC_PLUGIN_DIR', plugin_dir_path(__FILE__)); defined('WPMC_PLUGIN_URL') || define('WPMC_PLUGIN_URL', plugin_dir_url(__FILE__)); -defined('WPMC_VERSION') || define('WPMC_VERSION', '1.0.0'); +defined('WPMC_VERSION') || define('WPMC_VERSION', '1.0.1'); require_once WPMC_PLUGIN_DIR . 'includes/class-plugin.php'; \WPMultiCity\Plugin::register_autoloader();