Changeset 3495884
- Timestamp:
- 03/31/2026 05:55:00 PM (16 hours ago)
- Location:
- custom-post-type-permalinks
- Files:
-
- 2 added
- 12 edited
- 1 copied
-
assets/banner-1544x500.png (modified) (1 prop) (previous)
-
assets/banner-772x250.png (modified) (1 prop) (previous)
-
assets/icon-128x128.png (modified) (1 prop) (previous)
-
assets/icon-256x256.png (modified) (1 prop) (previous)
-
tags/3.5.4 (copied) (copied from custom-post-type-permalinks/trunk)
-
tags/3.5.4/.github/workflows/test-and-release.yml (modified) (3 diffs)
-
tags/3.5.4/.phpcs.xml.dist (modified) (1 diff)
-
tags/3.5.4/CLAUDE.md (added)
-
tags/3.5.4/custom-post-type-permalinks.php (modified) (1 diff)
-
tags/3.5.4/readme.txt (modified) (3 diffs)
-
trunk/.github/workflows/test-and-release.yml (modified) (3 diffs)
-
trunk/.phpcs.xml.dist (modified) (1 diff)
-
trunk/CLAUDE.md (added)
-
trunk/custom-post-type-permalinks.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-post-type-permalinks/assets/banner-1544x500.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
custom-post-type-permalinks/assets/banner-772x250.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
custom-post-type-permalinks/assets/icon-128x128.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
custom-post-type-permalinks/assets/icon-256x256.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
custom-post-type-permalinks/tags/3.5.4/.github/workflows/test-and-release.yml
r3166238 r3495884 3 3 on: 4 4 pull_request: 5 paths-ignore: 6 - "**.md" 5 7 push: 6 branches: [ master ] 7 tags: ['*'] 8 branches: [master] 9 tags: ["*"] 10 paths-ignore: 11 - "**.md" 8 12 9 13 jobs: 10 11 14 test: 12 15 runs-on: ubuntu-latest 13 16 services: 14 17 mysql: 15 image: mysql: 5.718 image: mysql:8.0 16 19 env: 17 20 MYSQL_ALLOW_EMPTY_PASSWORD: true … … 22 25 options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 23 26 strategy: 27 fail-fast: false 24 28 matrix: 25 include: 26 - php: 8.2 27 wp: trunk 28 - php: 8.0 29 wp: trunk 30 - php: 7.4 31 wp: trunk 32 - php: 8.0 33 wp: 6.5 34 - php: 7.4 35 wp: 6.5 36 - php: 8.0 37 wp: 6.1 38 - php: 7.4 39 wp: 6.1 29 php: ['8.4', '8.0'] 30 wp: ['trunk', '6.9', '6.7'] 31 multisite: [false, true] 40 32 41 name: PHP ${{ matrix.php }} / WP ${{ matrix.wp }} Test33 name: PHP ${{ matrix.php }} / WP ${{ matrix.wp }}${{ matrix.multisite && ' (multisite)' || '' }} Test 42 34 steps: 43 35 - uses: actions/checkout@v4 44 36 45 37 - name: Setup PHP 46 uses: shivammathur/setup-php@ master38 uses: shivammathur/setup-php@v2 47 39 with: 48 tools: phpunit-polyfills, phpunit49 40 php-version: ${{ matrix.php }} 50 extensions: mbstring, intl , mysqli 51 ini-values: post_max_size=256M, short_open_tag=On #optional, setup php.ini configuration 52 coverage: xdebug #optional, setup coverage driver 53 54 - name: Check PHP Version 55 run: php -v 41 extensions: mbstring, intl, mysqli 42 coverage: none 56 43 57 44 - name: Cache composer packages 58 uses: actions/cache@v 345 uses: actions/cache@v4 59 46 with: 60 47 path: vendor 61 key: composer-${{ hashFiles('composer.lock') }} 48 key: composer-${{ matrix.php }}-${{ hashFiles('composer.json') }} 49 restore-keys: composer-${{ matrix.php }}- 62 50 63 51 - name: Composer install 64 52 run: composer update --optimize-autoloader --prefer-dist 65 53 54 - name: Get cache key suffix 55 id: cache-date 56 run: echo "week=$(date +'%Y-W%V')" >> $GITHUB_OUTPUT 57 58 - name: Cache WordPress test library 59 uses: actions/cache@v4 60 with: 61 path: | 62 /tmp/wordpress 63 /tmp/wordpress-tests-lib 64 key: wp-test-lib-${{ matrix.wp }}-${{ matrix.wp == 'trunk' && steps.cache-date.outputs.week || 'stable' }} 65 66 - name: Install subversion 67 run: | 68 if ! command -v svn > /dev/null 2>&1 || [ ! -f /tmp/wordpress-tests-lib/includes/functions.php ]; then 69 sudo apt-get update && sudo apt-get install -y subversion 70 fi 71 66 72 - name: Install WP Tests 67 73 run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 ${{ matrix.wp }} true 68 74 69 - name: Build70 run: |71 bash ./bin/build.sh72 73 75 - name: phpunit tests 74 run: |75 composer test76 WP_MULTISITE =1 composer test76 run: composer test 77 env: 78 WP_MULTISITE: ${{ matrix.multisite && '1' || '' }} 77 79 78 80 lint: 79 runs-on: ubuntu-latest81 runs-on: ubuntu-latest 80 82 name: PHP lint 81 83 steps: 82 84 - uses: actions/checkout@v4 85 83 86 - name: Setup PHP 84 87 uses: shivammathur/setup-php@v2 85 88 with: 86 php-version: 8.2 87 extensions: mbstring, intl #optional, setup extensions 88 ini-values: post_max_size=256M, short_open_tag=On #optional, setup php.ini configuration 89 coverage: xdebug #optional, setup coverage driver 90 91 - name: Check PHP Version 92 run: php -v 89 php-version: 8.4 90 extensions: mbstring, intl 91 coverage: none 93 92 94 93 - name: Cache composer packages 95 uses: actions/cache@v 394 uses: actions/cache@v4 96 95 with: 97 96 path: vendor 98 key: composer-${{ hashFiles('composer.lock') }} 97 key: composer-lint-${{ hashFiles('composer.json') }} 98 restore-keys: composer-lint- 99 99 100 100 - name: Composer install … … 107 107 name: Release 108 108 runs-on: ubuntu-latest 109 needs: [test, lint]109 needs: [test, lint] 110 110 steps: 111 111 - uses: actions/checkout@v4 112 112 - name: Build 113 113 if: contains(github.ref, 'tags/') 114 run: | 115 bash ./bin/build.sh 114 run: bash ./bin/build.sh 116 115 - name: WordPress Plugin Deploy 117 116 if: contains(github.ref, 'tags/') 118 uses: 10up/action-wordpress-plugin-deploy@ master117 uses: 10up/action-wordpress-plugin-deploy@2.3.0 119 118 env: 120 119 SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} -
custom-post-type-permalinks/tags/3.5.4/.phpcs.xml.dist
r2957454 r3495884 19 19 <!-- Rules: Check PHP version compatibility --> 20 20 <!-- https://github.com/PHPCompatibility/PHPCompatibility#sniffing-your-code-for-compatibility-with-specific-php-versions --> 21 <config name="testVersion" value=" 5.3-"/>21 <config name="testVersion" value="8.0-"/> 22 22 <!-- https://github.com/PHPCompatibility/PHPCompatibilityWP --> 23 23 <rule ref="PHPCompatibilityWP"/> 24 <config name="minimum_supported_wp_version" value=" 4.7"/>24 <config name="minimum_supported_wp_version" value="6.7"/> 25 25 <rule ref="WordPress-Core"> 26 26 <exclude name="WordPress.Files.FileName" /> -
custom-post-type-permalinks/tags/3.5.4/custom-post-type-permalinks.php
r3166238 r3495884 6 6 * Author: Toro_Unit 7 7 * Author URI: https://torounit.com/ 8 * Version: 3.5. 38 * Version: 3.5.4 9 9 * Text Domain: custom-post-type-permalinks 10 10 * License: GPL2 or later 11 11 * Domain Path: /language/ 12 * Requires at least: 6. 113 * Requires PHP: 7.412 * Requires at least: 6.7 13 * Requires PHP: 8.0 14 14 * 15 15 * @package Custom_Post_Type_Permalinks 16 * @version 3.5. 316 * @version 3.5.4 17 17 */ 18 18 -
custom-post-type-permalinks/tags/3.5.4/readme.txt
r3166238 r3495884 1 1 === Custom Post Type Permalinks === 2 2 3 Contributors: Toro_Unit, inc2734, ixkaito, keita_kobayashi, strategio 4 Donate link: https://www.paypal.me/torounit 5 Tags: permalink, url, link, address, custom post type 6 Requires at least: 6.1 7 Tested up to: 6.6 8 Requires PHP: 7.4 9 License: GPLv2 or Later 10 License URI: http://www.gnu.org/licenses/gpl-2.0.txt 11 Stable tag: 3.5.3 12 3 Contributors: Toro_Unit, inc2734, ixkaito, keita_kobayashi, strategio 4 Donate link: https://www.paypal.me/torounit 5 Tags: permalink, url, link, address, custom post type 6 Requires at least: 6.7 7 Tested up to: 6.9 8 Requires PHP: 8.0 9 License: GPLv2 or Later 10 License URI: http://www.gnu.org/licenses/gpl-2.0.txt 11 Stable tag: 3.5.4 13 12 14 13 Edit the permalink of custom post type. … … 28 27 Donation: Please send [My Wishlist](http://www.amazon.co.jp/registry/wishlist/COKSXS25MVQV) or [Paypal](https://www.paypal.me/torounit) 29 28 30 31 29 = Translators = 32 30 33 *Japanese(ja) - [Toro_Unit](http://www.torounit.com/)34 *French(fr_FR) - [Geoffrey Crofte](http://geoffrey.crofte.fr/)35 *Russian(ru_RU) - [Olart](http://olart.ru), [Natali_Z](https://profiles.wordpress.org/natali_z)31 - Japanese(ja) - [Toro_Unit](http://www.torounit.com/) 32 - French(fr_FR) - [Geoffrey Crofte](http://geoffrey.crofte.fr/) 33 - Russian(ru_RU) - [Olart](http://olart.ru), [Natali_Z](https://profiles.wordpress.org/natali_z) 36 34 37 35 = Also checkout = 38 36 39 * [Simple Post Type Permalinks](https://wordpress.org/plugins/simple-post-type-permalinks/) 40 37 - [Simple Post Type Permalinks](https://wordpress.org/plugins/simple-post-type-permalinks/) 41 38 42 39 == Setting on Code == … … 70 67 == Installation == 71 68 72 * Download the custom-post-type-permalinks.zip file to your computer. 73 * Unzip the file. 74 * Upload the `custom-post-type-permalinks` directory to your `/wp-content/plugins/` directory. 75 * Activate the plugin through the 'Plugins' menu in WordPress. 76 77 That's it. You can access the permalinks setting by going to *Settings -> Permalinks*. 78 69 - Download the custom-post-type-permalinks.zip file to your computer. 70 - Unzip the file. 71 - Upload the `custom-post-type-permalinks` directory to your `/wp-content/plugins/` directory. 72 - Activate the plugin through the 'Plugins' menu in WordPress. 73 74 That's it. You can access the permalinks setting by going to _Settings -> Permalinks_. 79 75 80 76 == Screenshots == 81 77 82 *screenshot-1.png78 - screenshot-1.png 83 79 84 80 == Changelog == 85 81 82 = 3.5.4 = 83 - Tested WP 6.9 84 86 85 = 3.5.3 = 87 * Tested WP 6.6 88 * Fix notices for php 8. 86 87 - Tested WP 6.6 88 - Fix notices for php 8. 89 89 90 90 = 3.5.0 = 91 * Tested WP 6.1 / 6.2 / 6.3 92 * Tested PHP 8.0 / 8.2 91 92 - Tested WP 6.1 / 6.2 / 6.3 93 - Tested PHP 8.0 / 8.2 93 94 94 95 = 3.4.5 = 95 * Update test for WP 5.7 96 97 - Update test for WP 5.7 96 98 97 99 = 3.4.4 = 98 * WPML support: Only apply slug translation if post type is supported. (Props @ffauvel) 100 101 - WPML support: Only apply slug translation if post type is supported. (Props @ffauvel) 99 102 100 103 = 3.4.3 = 101 * Fix archive link bug fix. 104 105 - Fix archive link bug fix. 102 106 103 107 = 3.4.2 = 104 * Tested WP 5.6. 108 109 - Tested WP 5.6. 105 110 106 111 = 3.4.1 = 107 * Fix readme. 112 113 - Fix readme. 108 114 109 115 = 3.4.0 = 110 116 111 *Tested 5.5 beta3112 *WPML support: custom post type slug translation. ( Props @strategio )113 *Add new filter `cptp_post_link_category` and `cptp_post_link_term` .114 *Use Lowercase prefix for action and filter.117 - Tested 5.5 beta3 118 - WPML support: custom post type slug translation. ( Props @strategio ) 119 - Add new filter `cptp_post_link_category` and `cptp_post_link_term` . 120 - Use Lowercase prefix for action and filter. 115 121 116 122 = 3.3.5 = 117 123 118 *Tested 5.4119 *fix CPTP_Module_Permalink::post_type_link.124 - Tested 5.4 125 - fix CPTP_Module_Permalink::post_type_link. 120 126 121 127 = 3.3.1 = 122 128 123 *Add disable option for date / author and post type archive.124 *Bug fix for `parse_request`.129 - Add disable option for date / author and post type archive. 130 - Bug fix for `parse_request`. 125 131 126 132 = 3.2.2 = 127 133 128 *Fix readme.txt134 - Fix readme.txt 129 135 130 136 = 3.2.0 = 131 137 132 *Support only public post type.133 *Add `CPTP_is_rewrite_supported_by_${post_type}` and `CPTP_is_rewrite_supported` filter.134 *Remove post_type query wp_get_archives.138 - Support only public post type. 139 - Add `CPTP_is_rewrite_supported_by_${post_type}` and `CPTP_is_rewrite_supported` filter. 140 - Remove post_type query wp_get_archives. 135 141 136 142 = 3.1.4 = 137 143 138 *Test for WordPress 4.9.139 *PHPCS fix.144 - Test for WordPress 4.9. 145 - PHPCS fix. 140 146 141 147 = 3.1.3 = 142 148 143 *Test for WordPress 4.8.144 *Bug fix for attachment link.149 - Test for WordPress 4.8. 150 - Bug fix for attachment link. 145 151 146 152 = 3.1.1 = 147 153 148 *Bug fix in `CPTP_Module_Setting::upgrader_process_complete`.154 - Bug fix in `CPTP_Module_Setting::upgrader_process_complete`. 149 155 150 156 = 3.1.0 = 151 157 152 *Add filter `CPTP_date_front`.153 *Fix sort term by `wp_list_sort` .158 - Add filter `CPTP_date_front`. 159 - Fix sort term by `wp_list_sort` . 154 160 155 161 = 3.0.0 = 156 162 157 *Admin notice on update plugin.158 *Large bug fix.159 *no_taxonomy_structure bug fix.160 *Add default value for options.163 - Admin notice on update plugin. 164 - Large bug fix. 165 - no_taxonomy_structure bug fix. 166 - Add default value for options. 161 167 162 168 = 2.2.0 = 163 169 164 *add `CPTP_Util::get_no_taxonomy_structure`.170 - add `CPTP_Util::get_no_taxonomy_structure`. 165 171 166 172 = 2.1.3 = 167 173 168 *Set `no_taxonomy_structure` default `true`.174 - Set `no_taxonomy_structure` default `true`. 169 175 170 176 = 2.1.2 = 171 177 172 *`rewirte => false` post type support.178 - `rewirte => false` post type support. 173 179 174 180 = 2.1.0 = 175 181 176 *Create rewrite rule on `registered_post_type` and `registered_taxonomy` action.177 *Not create taxonomy rewrite rule when `rewrite` is `false`.182 - Create rewrite rule on `registered_post_type` and `registered_taxonomy` action. 183 - Not create taxonomy rewrite rule when `rewrite` is `false`. 178 184 179 185 = 2.0.2 = 180 186 181 *pointer html bug fix.187 - pointer html bug fix. 182 188 183 189 = 2.0.0 = 184 190 185 *`add_rewrite_rules` on `wp_loaded` priority is changed 10 from 100. [fix issue #53](https://github.com/torounit/custom-post-type-permalinks/issues/53)186 *Replace `wp_get_post_terms` by `get_the_terms`. [fix issue #55](https://github.com/torounit/custom-post-type-permalinks/issues/55)187 *Fix bug `register_uninstall_hook` called twice on each page. [fix issue #56](https://github.com/torounit/custom-post-type-permalinks/issues/56)191 - `add_rewrite_rules` on `wp_loaded` priority is changed 10 from 100. [fix issue #53](https://github.com/torounit/custom-post-type-permalinks/issues/53) 192 - Replace `wp_get_post_terms` by `get_the_terms`. [fix issue #55](https://github.com/torounit/custom-post-type-permalinks/issues/55) 193 - Fix bug `register_uninstall_hook` called twice on each page. [fix issue #56](https://github.com/torounit/custom-post-type-permalinks/issues/56) 188 194 189 195 = 1.5.4 = 190 196 191 * Fixed removed parent post problem. 192 197 - Fixed removed parent post problem. 193 198 194 199 = 1.5.3 = 195 200 196 *readme fix.201 - readme fix. 197 202 198 203 = 1.5.0 = 199 204 200 * Tested for 4.5. 201 * Add filter `CPTP_set_{$module_name}_module`. 202 205 - Tested for 4.5. 206 - Add filter `CPTP_set_{$module_name}_module`. 203 207 204 208 = 1.4.0 = 205 209 206 * Fix Translation Problem. 207 210 - Fix Translation Problem. 208 211 209 212 = 1.3.1 = 210 213 211 *bugfix `wp_get_archives`.214 - bugfix `wp_get_archives`. 212 215 213 216 = 1.3.0 = 214 217 215 *bugfix for polylang.218 - bugfix for polylang. 216 219 217 220 = 1.2.0 = 218 221 219 *Add filter `cptp_post_type_link_priority`, `cptp_term_link_priority`, `cptp_attachment_link_priority`.220 *Add action `CPTP_registered_modules`.222 - Add filter `cptp_post_type_link_priority`, `cptp_term_link_priority`, `cptp_attachment_link_priority`. 223 - Add action `CPTP_registered_modules`. 221 224 222 225 = 1.1.0 = 223 226 224 *WPML Test. thanks [keita_kobayashi](https://profiles.wordpress.org/keita_kobayashi) !227 - WPML Test. thanks [keita_kobayashi](https://profiles.wordpress.org/keita_kobayashi) ! 225 228 226 229 = 1.0.5 = 227 230 228 *admin bug fix. thanks [ixkaito](https://profiles.wordpress.org/ixkaito) !229 *Translation Update Thanks [Natali_Z](https://profiles.wordpress.org/natali_z) !231 - admin bug fix. thanks [ixkaito](https://profiles.wordpress.org/ixkaito) ! 232 - Translation Update Thanks [Natali_Z](https://profiles.wordpress.org/natali_z) ! 230 233 231 234 = 1.0.4 = 232 235 233 *option bug fix.236 - option bug fix. 234 237 235 238 = 1.0.3 = 236 239 237 *add category rule, if only attached category to post type.240 - add category rule, if only attached category to post type. 238 241 239 242 = 1.0.2 = 240 243 241 *category slug bug fix.244 - category slug bug fix. 242 245 243 246 = 1.0.0 = 244 247 245 *Set Permalink enable `register_post_type`.246 *Enable add post type query to taxonomy archives.247 *Use Class Autoloader.248 *Create Rewrite Rule on `wp_loaded` action.249 *WordPress Code Format Fix.250 *`CPTP_Module_Permalink` Bug Fix.251 *Bug Fix.252 *Use Semantic Versioning.253 *Date Structure Fix.254 *Use Category Base.248 - Set Permalink enable `register_post_type`. 249 - Enable add post type query to taxonomy archives. 250 - Use Class Autoloader. 251 - Create Rewrite Rule on `wp_loaded` action. 252 - WordPress Code Format Fix. 253 - `CPTP_Module_Permalink` Bug Fix. 254 - Bug Fix. 255 - Use Semantic Versioning. 256 - Date Structure Fix. 257 - Use Category Base. 255 258 256 259 = 0.9.7 = 257 260 258 *Adding date slug only conflicting `%post_id%`.259 *Change taxonomy link rewrite rule. Use `post_type`.260 *Can change template include custom taxonomy.261 - Adding date slug only conflicting `%post_id%`. 262 - Change taxonomy link rewrite rule. Use `post_type`. 263 - Can change template include custom taxonomy. 261 264 262 265 = 0.9.6 = 263 266 264 *Category and author.265 *French Transration. Thanks Geoffrey!266 *Hierarchial Term Fix.267 - Category and author. 268 - French Transration. Thanks Geoffrey! 269 - Hierarchial Term Fix. 267 270 268 271 = 0.9.5.6 = 269 272 270 *Strict Standard Error Fix.273 - Strict Standard Error Fix. 271 274 272 275 = 0.9.5.4 = 273 276 274 *archive link bug fix.275 *Tested Up 3.9277 - archive link bug fix. 278 - Tested Up 3.9 276 279 277 280 = 0.9.5.3 = 278 281 279 *“/”bug fix.280 *taxonomy tmplate bug fix.282 - “/”bug fix. 283 - taxonomy tmplate bug fix. 281 284 282 285 = 0.9.5.2 = 283 286 284 *Archives Rewrite Fix.287 - Archives Rewrite Fix. 285 288 286 289 = 0.9.5.1 = 287 290 288 *Admin Bug Fix.291 - Admin Bug Fix. 289 292 290 293 = 0.9.5 = 291 294 292 *Big change plugin architecture.293 *Show `has_archive`, `with_front`.295 - Big change plugin architecture. 296 - Show `has_archive`, `with_front`. 294 297 295 298 = 0.9.4 = 296 299 297 *Internal release.300 - Internal release. 298 301 299 302 = 0.9.3.3 = 300 303 301 *`has_archive` Bug Fix.302 *Fixed a bug in the link, including the extension.304 - `has_archive` Bug Fix. 305 - Fixed a bug in the link, including the extension. 303 306 304 307 = 0.9.3.2 = 305 308 306 *`wp_get_archives` Bug Fix.309 - `wp_get_archives` Bug Fix. 307 310 308 311 = 0.9.3.1 = 309 312 310 * Tested 3.6 311 * Bug Fix. 312 313 - Tested 3.6 314 - Bug Fix. 313 315 314 316 = 0.9.3 = 315 317 316 * Admin page fix. 317 * slngle pageing link fix. 318 * Add Russian translation. 319 318 - Admin page fix. 319 - slngle pageing link fix. 320 - Add Russian translation. 320 321 321 322 = 0.9 = 322 323 323 * Add custom post type archive only `has_archive` is `true`. 324 * Change method name. 325 * Change hook custom post link. 326 * Use Slug in `wp_get_archive()`. 327 * Fix attachment link. 328 324 - Add custom post type archive only `has_archive` is `true`. 325 - Change method name. 326 - Change hook custom post link. 327 - Use Slug in `wp_get_archive()`. 328 - Fix attachment link. 329 329 330 330 = 0.8.7 = 331 331 332 *Translate Bug Fix.332 - Translate Bug Fix. 333 333 334 334 = 0.8.6 = 335 335 336 *Paging Bug Fix.337 *Commnent Paging.338 *Show pointer.339 * 336 - Paging Bug Fix. 337 - Commnent Paging. 338 - Show pointer. 339 - 340 340 341 341 = 0.8.1 = 342 342 343 *Bug Fix.343 - Bug Fix. 344 344 345 345 = 0.7.9.1 = 346 346 347 *Support Comment permalink.348 *Small change in setting page.349 *Change default value.350 *Bug Fix.347 - Support Comment permalink. 348 - Small change in setting page. 349 - Change default value. 350 - Bug Fix. 351 351 352 352 = 0.7.8 = 353 353 354 * Bug fix. 355 354 - Bug fix. 356 355 357 356 = 0.7.7 = 358 357 359 *Bug fix.358 - Bug fix. 360 359 361 360 = 0.7.6 = 362 361 363 * Add parent's slug to hierarchical post type. 364 362 - Add parent's slug to hierarchical post type. 365 363 366 364 = 0.7.5 = 367 365 368 * Add ability to disable to change custom taxonomy archive's permalink. 369 366 - Add ability to disable to change custom taxonomy archive's permalink. 370 367 371 368 = 0.7.4 = 372 369 373 * Bug fix taxonomy rewrite. 374 370 - Bug fix taxonomy rewrite. 375 371 376 372 = 0.7.3 = 377 373 378 *Changed part for saving the data.374 - Changed part for saving the data. 379 375 380 376 = 0.7.2 = 381 377 382 *Reweite bug fix.383 *Prewview bug fix.378 - Reweite bug fix. 379 - Prewview bug fix. 384 380 385 381 = 0.7.1 = 386 382 387 *Bug fix.383 - Bug fix. 388 384 389 385 = 0.7 = 390 386 391 * Add `%{taxonomy}%` tag. 392 * A large number of Bug Fix. 393 * Change Setting Page. Use Setting API. 394 387 - Add `%{taxonomy}%` tag. 388 - A large number of Bug Fix. 389 - Change Setting Page. Use Setting API. 395 390 396 391 = 0.6.2 = 397 392 398 *Fix `%author%` tag.393 - Fix `%author%` tag. 399 394 400 395 = 0.6 = 401 396 402 *First release on wordpress.org397 - First release on wordpress.org -
custom-post-type-permalinks/trunk/.github/workflows/test-and-release.yml
r3166238 r3495884 3 3 on: 4 4 pull_request: 5 paths-ignore: 6 - "**.md" 5 7 push: 6 branches: [ master ] 7 tags: ['*'] 8 branches: [master] 9 tags: ["*"] 10 paths-ignore: 11 - "**.md" 8 12 9 13 jobs: 10 11 14 test: 12 15 runs-on: ubuntu-latest 13 16 services: 14 17 mysql: 15 image: mysql: 5.718 image: mysql:8.0 16 19 env: 17 20 MYSQL_ALLOW_EMPTY_PASSWORD: true … … 22 25 options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 23 26 strategy: 27 fail-fast: false 24 28 matrix: 25 include: 26 - php: 8.2 27 wp: trunk 28 - php: 8.0 29 wp: trunk 30 - php: 7.4 31 wp: trunk 32 - php: 8.0 33 wp: 6.5 34 - php: 7.4 35 wp: 6.5 36 - php: 8.0 37 wp: 6.1 38 - php: 7.4 39 wp: 6.1 29 php: ['8.4', '8.0'] 30 wp: ['trunk', '6.9', '6.7'] 31 multisite: [false, true] 40 32 41 name: PHP ${{ matrix.php }} / WP ${{ matrix.wp }} Test33 name: PHP ${{ matrix.php }} / WP ${{ matrix.wp }}${{ matrix.multisite && ' (multisite)' || '' }} Test 42 34 steps: 43 35 - uses: actions/checkout@v4 44 36 45 37 - name: Setup PHP 46 uses: shivammathur/setup-php@ master38 uses: shivammathur/setup-php@v2 47 39 with: 48 tools: phpunit-polyfills, phpunit49 40 php-version: ${{ matrix.php }} 50 extensions: mbstring, intl , mysqli 51 ini-values: post_max_size=256M, short_open_tag=On #optional, setup php.ini configuration 52 coverage: xdebug #optional, setup coverage driver 53 54 - name: Check PHP Version 55 run: php -v 41 extensions: mbstring, intl, mysqli 42 coverage: none 56 43 57 44 - name: Cache composer packages 58 uses: actions/cache@v 345 uses: actions/cache@v4 59 46 with: 60 47 path: vendor 61 key: composer-${{ hashFiles('composer.lock') }} 48 key: composer-${{ matrix.php }}-${{ hashFiles('composer.json') }} 49 restore-keys: composer-${{ matrix.php }}- 62 50 63 51 - name: Composer install 64 52 run: composer update --optimize-autoloader --prefer-dist 65 53 54 - name: Get cache key suffix 55 id: cache-date 56 run: echo "week=$(date +'%Y-W%V')" >> $GITHUB_OUTPUT 57 58 - name: Cache WordPress test library 59 uses: actions/cache@v4 60 with: 61 path: | 62 /tmp/wordpress 63 /tmp/wordpress-tests-lib 64 key: wp-test-lib-${{ matrix.wp }}-${{ matrix.wp == 'trunk' && steps.cache-date.outputs.week || 'stable' }} 65 66 - name: Install subversion 67 run: | 68 if ! command -v svn > /dev/null 2>&1 || [ ! -f /tmp/wordpress-tests-lib/includes/functions.php ]; then 69 sudo apt-get update && sudo apt-get install -y subversion 70 fi 71 66 72 - name: Install WP Tests 67 73 run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 ${{ matrix.wp }} true 68 74 69 - name: Build70 run: |71 bash ./bin/build.sh72 73 75 - name: phpunit tests 74 run: |75 composer test76 WP_MULTISITE =1 composer test76 run: composer test 77 env: 78 WP_MULTISITE: ${{ matrix.multisite && '1' || '' }} 77 79 78 80 lint: 79 runs-on: ubuntu-latest81 runs-on: ubuntu-latest 80 82 name: PHP lint 81 83 steps: 82 84 - uses: actions/checkout@v4 85 83 86 - name: Setup PHP 84 87 uses: shivammathur/setup-php@v2 85 88 with: 86 php-version: 8.2 87 extensions: mbstring, intl #optional, setup extensions 88 ini-values: post_max_size=256M, short_open_tag=On #optional, setup php.ini configuration 89 coverage: xdebug #optional, setup coverage driver 90 91 - name: Check PHP Version 92 run: php -v 89 php-version: 8.4 90 extensions: mbstring, intl 91 coverage: none 93 92 94 93 - name: Cache composer packages 95 uses: actions/cache@v 394 uses: actions/cache@v4 96 95 with: 97 96 path: vendor 98 key: composer-${{ hashFiles('composer.lock') }} 97 key: composer-lint-${{ hashFiles('composer.json') }} 98 restore-keys: composer-lint- 99 99 100 100 - name: Composer install … … 107 107 name: Release 108 108 runs-on: ubuntu-latest 109 needs: [test, lint]109 needs: [test, lint] 110 110 steps: 111 111 - uses: actions/checkout@v4 112 112 - name: Build 113 113 if: contains(github.ref, 'tags/') 114 run: | 115 bash ./bin/build.sh 114 run: bash ./bin/build.sh 116 115 - name: WordPress Plugin Deploy 117 116 if: contains(github.ref, 'tags/') 118 uses: 10up/action-wordpress-plugin-deploy@ master117 uses: 10up/action-wordpress-plugin-deploy@2.3.0 119 118 env: 120 119 SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} -
custom-post-type-permalinks/trunk/.phpcs.xml.dist
r2957454 r3495884 19 19 <!-- Rules: Check PHP version compatibility --> 20 20 <!-- https://github.com/PHPCompatibility/PHPCompatibility#sniffing-your-code-for-compatibility-with-specific-php-versions --> 21 <config name="testVersion" value=" 5.3-"/>21 <config name="testVersion" value="8.0-"/> 22 22 <!-- https://github.com/PHPCompatibility/PHPCompatibilityWP --> 23 23 <rule ref="PHPCompatibilityWP"/> 24 <config name="minimum_supported_wp_version" value=" 4.7"/>24 <config name="minimum_supported_wp_version" value="6.7"/> 25 25 <rule ref="WordPress-Core"> 26 26 <exclude name="WordPress.Files.FileName" /> -
custom-post-type-permalinks/trunk/custom-post-type-permalinks.php
r3166238 r3495884 6 6 * Author: Toro_Unit 7 7 * Author URI: https://torounit.com/ 8 * Version: 3.5. 38 * Version: 3.5.4 9 9 * Text Domain: custom-post-type-permalinks 10 10 * License: GPL2 or later 11 11 * Domain Path: /language/ 12 * Requires at least: 6. 113 * Requires PHP: 7.412 * Requires at least: 6.7 13 * Requires PHP: 8.0 14 14 * 15 15 * @package Custom_Post_Type_Permalinks 16 * @version 3.5. 316 * @version 3.5.4 17 17 */ 18 18 -
custom-post-type-permalinks/trunk/readme.txt
r3166238 r3495884 1 1 === Custom Post Type Permalinks === 2 2 3 Contributors: Toro_Unit, inc2734, ixkaito, keita_kobayashi, strategio 4 Donate link: https://www.paypal.me/torounit 5 Tags: permalink, url, link, address, custom post type 6 Requires at least: 6.1 7 Tested up to: 6.6 8 Requires PHP: 7.4 9 License: GPLv2 or Later 10 License URI: http://www.gnu.org/licenses/gpl-2.0.txt 11 Stable tag: 3.5.3 12 3 Contributors: Toro_Unit, inc2734, ixkaito, keita_kobayashi, strategio 4 Donate link: https://www.paypal.me/torounit 5 Tags: permalink, url, link, address, custom post type 6 Requires at least: 6.7 7 Tested up to: 6.9 8 Requires PHP: 8.0 9 License: GPLv2 or Later 10 License URI: http://www.gnu.org/licenses/gpl-2.0.txt 11 Stable tag: 3.5.4 13 12 14 13 Edit the permalink of custom post type. … … 28 27 Donation: Please send [My Wishlist](http://www.amazon.co.jp/registry/wishlist/COKSXS25MVQV) or [Paypal](https://www.paypal.me/torounit) 29 28 30 31 29 = Translators = 32 30 33 *Japanese(ja) - [Toro_Unit](http://www.torounit.com/)34 *French(fr_FR) - [Geoffrey Crofte](http://geoffrey.crofte.fr/)35 *Russian(ru_RU) - [Olart](http://olart.ru), [Natali_Z](https://profiles.wordpress.org/natali_z)31 - Japanese(ja) - [Toro_Unit](http://www.torounit.com/) 32 - French(fr_FR) - [Geoffrey Crofte](http://geoffrey.crofte.fr/) 33 - Russian(ru_RU) - [Olart](http://olart.ru), [Natali_Z](https://profiles.wordpress.org/natali_z) 36 34 37 35 = Also checkout = 38 36 39 * [Simple Post Type Permalinks](https://wordpress.org/plugins/simple-post-type-permalinks/) 40 37 - [Simple Post Type Permalinks](https://wordpress.org/plugins/simple-post-type-permalinks/) 41 38 42 39 == Setting on Code == … … 70 67 == Installation == 71 68 72 * Download the custom-post-type-permalinks.zip file to your computer. 73 * Unzip the file. 74 * Upload the `custom-post-type-permalinks` directory to your `/wp-content/plugins/` directory. 75 * Activate the plugin through the 'Plugins' menu in WordPress. 76 77 That's it. You can access the permalinks setting by going to *Settings -> Permalinks*. 78 69 - Download the custom-post-type-permalinks.zip file to your computer. 70 - Unzip the file. 71 - Upload the `custom-post-type-permalinks` directory to your `/wp-content/plugins/` directory. 72 - Activate the plugin through the 'Plugins' menu in WordPress. 73 74 That's it. You can access the permalinks setting by going to _Settings -> Permalinks_. 79 75 80 76 == Screenshots == 81 77 82 *screenshot-1.png78 - screenshot-1.png 83 79 84 80 == Changelog == 85 81 82 = 3.5.4 = 83 - Tested WP 6.9 84 86 85 = 3.5.3 = 87 * Tested WP 6.6 88 * Fix notices for php 8. 86 87 - Tested WP 6.6 88 - Fix notices for php 8. 89 89 90 90 = 3.5.0 = 91 * Tested WP 6.1 / 6.2 / 6.3 92 * Tested PHP 8.0 / 8.2 91 92 - Tested WP 6.1 / 6.2 / 6.3 93 - Tested PHP 8.0 / 8.2 93 94 94 95 = 3.4.5 = 95 * Update test for WP 5.7 96 97 - Update test for WP 5.7 96 98 97 99 = 3.4.4 = 98 * WPML support: Only apply slug translation if post type is supported. (Props @ffauvel) 100 101 - WPML support: Only apply slug translation if post type is supported. (Props @ffauvel) 99 102 100 103 = 3.4.3 = 101 * Fix archive link bug fix. 104 105 - Fix archive link bug fix. 102 106 103 107 = 3.4.2 = 104 * Tested WP 5.6. 108 109 - Tested WP 5.6. 105 110 106 111 = 3.4.1 = 107 * Fix readme. 112 113 - Fix readme. 108 114 109 115 = 3.4.0 = 110 116 111 *Tested 5.5 beta3112 *WPML support: custom post type slug translation. ( Props @strategio )113 *Add new filter `cptp_post_link_category` and `cptp_post_link_term` .114 *Use Lowercase prefix for action and filter.117 - Tested 5.5 beta3 118 - WPML support: custom post type slug translation. ( Props @strategio ) 119 - Add new filter `cptp_post_link_category` and `cptp_post_link_term` . 120 - Use Lowercase prefix for action and filter. 115 121 116 122 = 3.3.5 = 117 123 118 *Tested 5.4119 *fix CPTP_Module_Permalink::post_type_link.124 - Tested 5.4 125 - fix CPTP_Module_Permalink::post_type_link. 120 126 121 127 = 3.3.1 = 122 128 123 *Add disable option for date / author and post type archive.124 *Bug fix for `parse_request`.129 - Add disable option for date / author and post type archive. 130 - Bug fix for `parse_request`. 125 131 126 132 = 3.2.2 = 127 133 128 *Fix readme.txt134 - Fix readme.txt 129 135 130 136 = 3.2.0 = 131 137 132 *Support only public post type.133 *Add `CPTP_is_rewrite_supported_by_${post_type}` and `CPTP_is_rewrite_supported` filter.134 *Remove post_type query wp_get_archives.138 - Support only public post type. 139 - Add `CPTP_is_rewrite_supported_by_${post_type}` and `CPTP_is_rewrite_supported` filter. 140 - Remove post_type query wp_get_archives. 135 141 136 142 = 3.1.4 = 137 143 138 *Test for WordPress 4.9.139 *PHPCS fix.144 - Test for WordPress 4.9. 145 - PHPCS fix. 140 146 141 147 = 3.1.3 = 142 148 143 *Test for WordPress 4.8.144 *Bug fix for attachment link.149 - Test for WordPress 4.8. 150 - Bug fix for attachment link. 145 151 146 152 = 3.1.1 = 147 153 148 *Bug fix in `CPTP_Module_Setting::upgrader_process_complete`.154 - Bug fix in `CPTP_Module_Setting::upgrader_process_complete`. 149 155 150 156 = 3.1.0 = 151 157 152 *Add filter `CPTP_date_front`.153 *Fix sort term by `wp_list_sort` .158 - Add filter `CPTP_date_front`. 159 - Fix sort term by `wp_list_sort` . 154 160 155 161 = 3.0.0 = 156 162 157 *Admin notice on update plugin.158 *Large bug fix.159 *no_taxonomy_structure bug fix.160 *Add default value for options.163 - Admin notice on update plugin. 164 - Large bug fix. 165 - no_taxonomy_structure bug fix. 166 - Add default value for options. 161 167 162 168 = 2.2.0 = 163 169 164 *add `CPTP_Util::get_no_taxonomy_structure`.170 - add `CPTP_Util::get_no_taxonomy_structure`. 165 171 166 172 = 2.1.3 = 167 173 168 *Set `no_taxonomy_structure` default `true`.174 - Set `no_taxonomy_structure` default `true`. 169 175 170 176 = 2.1.2 = 171 177 172 *`rewirte => false` post type support.178 - `rewirte => false` post type support. 173 179 174 180 = 2.1.0 = 175 181 176 *Create rewrite rule on `registered_post_type` and `registered_taxonomy` action.177 *Not create taxonomy rewrite rule when `rewrite` is `false`.182 - Create rewrite rule on `registered_post_type` and `registered_taxonomy` action. 183 - Not create taxonomy rewrite rule when `rewrite` is `false`. 178 184 179 185 = 2.0.2 = 180 186 181 *pointer html bug fix.187 - pointer html bug fix. 182 188 183 189 = 2.0.0 = 184 190 185 *`add_rewrite_rules` on `wp_loaded` priority is changed 10 from 100. [fix issue #53](https://github.com/torounit/custom-post-type-permalinks/issues/53)186 *Replace `wp_get_post_terms` by `get_the_terms`. [fix issue #55](https://github.com/torounit/custom-post-type-permalinks/issues/55)187 *Fix bug `register_uninstall_hook` called twice on each page. [fix issue #56](https://github.com/torounit/custom-post-type-permalinks/issues/56)191 - `add_rewrite_rules` on `wp_loaded` priority is changed 10 from 100. [fix issue #53](https://github.com/torounit/custom-post-type-permalinks/issues/53) 192 - Replace `wp_get_post_terms` by `get_the_terms`. [fix issue #55](https://github.com/torounit/custom-post-type-permalinks/issues/55) 193 - Fix bug `register_uninstall_hook` called twice on each page. [fix issue #56](https://github.com/torounit/custom-post-type-permalinks/issues/56) 188 194 189 195 = 1.5.4 = 190 196 191 * Fixed removed parent post problem. 192 197 - Fixed removed parent post problem. 193 198 194 199 = 1.5.3 = 195 200 196 *readme fix.201 - readme fix. 197 202 198 203 = 1.5.0 = 199 204 200 * Tested for 4.5. 201 * Add filter `CPTP_set_{$module_name}_module`. 202 205 - Tested for 4.5. 206 - Add filter `CPTP_set_{$module_name}_module`. 203 207 204 208 = 1.4.0 = 205 209 206 * Fix Translation Problem. 207 210 - Fix Translation Problem. 208 211 209 212 = 1.3.1 = 210 213 211 *bugfix `wp_get_archives`.214 - bugfix `wp_get_archives`. 212 215 213 216 = 1.3.0 = 214 217 215 *bugfix for polylang.218 - bugfix for polylang. 216 219 217 220 = 1.2.0 = 218 221 219 *Add filter `cptp_post_type_link_priority`, `cptp_term_link_priority`, `cptp_attachment_link_priority`.220 *Add action `CPTP_registered_modules`.222 - Add filter `cptp_post_type_link_priority`, `cptp_term_link_priority`, `cptp_attachment_link_priority`. 223 - Add action `CPTP_registered_modules`. 221 224 222 225 = 1.1.0 = 223 226 224 *WPML Test. thanks [keita_kobayashi](https://profiles.wordpress.org/keita_kobayashi) !227 - WPML Test. thanks [keita_kobayashi](https://profiles.wordpress.org/keita_kobayashi) ! 225 228 226 229 = 1.0.5 = 227 230 228 *admin bug fix. thanks [ixkaito](https://profiles.wordpress.org/ixkaito) !229 *Translation Update Thanks [Natali_Z](https://profiles.wordpress.org/natali_z) !231 - admin bug fix. thanks [ixkaito](https://profiles.wordpress.org/ixkaito) ! 232 - Translation Update Thanks [Natali_Z](https://profiles.wordpress.org/natali_z) ! 230 233 231 234 = 1.0.4 = 232 235 233 *option bug fix.236 - option bug fix. 234 237 235 238 = 1.0.3 = 236 239 237 *add category rule, if only attached category to post type.240 - add category rule, if only attached category to post type. 238 241 239 242 = 1.0.2 = 240 243 241 *category slug bug fix.244 - category slug bug fix. 242 245 243 246 = 1.0.0 = 244 247 245 *Set Permalink enable `register_post_type`.246 *Enable add post type query to taxonomy archives.247 *Use Class Autoloader.248 *Create Rewrite Rule on `wp_loaded` action.249 *WordPress Code Format Fix.250 *`CPTP_Module_Permalink` Bug Fix.251 *Bug Fix.252 *Use Semantic Versioning.253 *Date Structure Fix.254 *Use Category Base.248 - Set Permalink enable `register_post_type`. 249 - Enable add post type query to taxonomy archives. 250 - Use Class Autoloader. 251 - Create Rewrite Rule on `wp_loaded` action. 252 - WordPress Code Format Fix. 253 - `CPTP_Module_Permalink` Bug Fix. 254 - Bug Fix. 255 - Use Semantic Versioning. 256 - Date Structure Fix. 257 - Use Category Base. 255 258 256 259 = 0.9.7 = 257 260 258 *Adding date slug only conflicting `%post_id%`.259 *Change taxonomy link rewrite rule. Use `post_type`.260 *Can change template include custom taxonomy.261 - Adding date slug only conflicting `%post_id%`. 262 - Change taxonomy link rewrite rule. Use `post_type`. 263 - Can change template include custom taxonomy. 261 264 262 265 = 0.9.6 = 263 266 264 *Category and author.265 *French Transration. Thanks Geoffrey!266 *Hierarchial Term Fix.267 - Category and author. 268 - French Transration. Thanks Geoffrey! 269 - Hierarchial Term Fix. 267 270 268 271 = 0.9.5.6 = 269 272 270 *Strict Standard Error Fix.273 - Strict Standard Error Fix. 271 274 272 275 = 0.9.5.4 = 273 276 274 *archive link bug fix.275 *Tested Up 3.9277 - archive link bug fix. 278 - Tested Up 3.9 276 279 277 280 = 0.9.5.3 = 278 281 279 *“/”bug fix.280 *taxonomy tmplate bug fix.282 - “/”bug fix. 283 - taxonomy tmplate bug fix. 281 284 282 285 = 0.9.5.2 = 283 286 284 *Archives Rewrite Fix.287 - Archives Rewrite Fix. 285 288 286 289 = 0.9.5.1 = 287 290 288 *Admin Bug Fix.291 - Admin Bug Fix. 289 292 290 293 = 0.9.5 = 291 294 292 *Big change plugin architecture.293 *Show `has_archive`, `with_front`.295 - Big change plugin architecture. 296 - Show `has_archive`, `with_front`. 294 297 295 298 = 0.9.4 = 296 299 297 *Internal release.300 - Internal release. 298 301 299 302 = 0.9.3.3 = 300 303 301 *`has_archive` Bug Fix.302 *Fixed a bug in the link, including the extension.304 - `has_archive` Bug Fix. 305 - Fixed a bug in the link, including the extension. 303 306 304 307 = 0.9.3.2 = 305 308 306 *`wp_get_archives` Bug Fix.309 - `wp_get_archives` Bug Fix. 307 310 308 311 = 0.9.3.1 = 309 312 310 * Tested 3.6 311 * Bug Fix. 312 313 - Tested 3.6 314 - Bug Fix. 313 315 314 316 = 0.9.3 = 315 317 316 * Admin page fix. 317 * slngle pageing link fix. 318 * Add Russian translation. 319 318 - Admin page fix. 319 - slngle pageing link fix. 320 - Add Russian translation. 320 321 321 322 = 0.9 = 322 323 323 * Add custom post type archive only `has_archive` is `true`. 324 * Change method name. 325 * Change hook custom post link. 326 * Use Slug in `wp_get_archive()`. 327 * Fix attachment link. 328 324 - Add custom post type archive only `has_archive` is `true`. 325 - Change method name. 326 - Change hook custom post link. 327 - Use Slug in `wp_get_archive()`. 328 - Fix attachment link. 329 329 330 330 = 0.8.7 = 331 331 332 *Translate Bug Fix.332 - Translate Bug Fix. 333 333 334 334 = 0.8.6 = 335 335 336 *Paging Bug Fix.337 *Commnent Paging.338 *Show pointer.339 * 336 - Paging Bug Fix. 337 - Commnent Paging. 338 - Show pointer. 339 - 340 340 341 341 = 0.8.1 = 342 342 343 *Bug Fix.343 - Bug Fix. 344 344 345 345 = 0.7.9.1 = 346 346 347 *Support Comment permalink.348 *Small change in setting page.349 *Change default value.350 *Bug Fix.347 - Support Comment permalink. 348 - Small change in setting page. 349 - Change default value. 350 - Bug Fix. 351 351 352 352 = 0.7.8 = 353 353 354 * Bug fix. 355 354 - Bug fix. 356 355 357 356 = 0.7.7 = 358 357 359 *Bug fix.358 - Bug fix. 360 359 361 360 = 0.7.6 = 362 361 363 * Add parent's slug to hierarchical post type. 364 362 - Add parent's slug to hierarchical post type. 365 363 366 364 = 0.7.5 = 367 365 368 * Add ability to disable to change custom taxonomy archive's permalink. 369 366 - Add ability to disable to change custom taxonomy archive's permalink. 370 367 371 368 = 0.7.4 = 372 369 373 * Bug fix taxonomy rewrite. 374 370 - Bug fix taxonomy rewrite. 375 371 376 372 = 0.7.3 = 377 373 378 *Changed part for saving the data.374 - Changed part for saving the data. 379 375 380 376 = 0.7.2 = 381 377 382 *Reweite bug fix.383 *Prewview bug fix.378 - Reweite bug fix. 379 - Prewview bug fix. 384 380 385 381 = 0.7.1 = 386 382 387 *Bug fix.383 - Bug fix. 388 384 389 385 = 0.7 = 390 386 391 * Add `%{taxonomy}%` tag. 392 * A large number of Bug Fix. 393 * Change Setting Page. Use Setting API. 394 387 - Add `%{taxonomy}%` tag. 388 - A large number of Bug Fix. 389 - Change Setting Page. Use Setting API. 395 390 396 391 = 0.6.2 = 397 392 398 *Fix `%author%` tag.393 - Fix `%author%` tag. 399 394 400 395 = 0.6 = 401 396 402 *First release on wordpress.org397 - First release on wordpress.org
Note: See TracChangeset
for help on using the changeset viewer.