Plugin Directory

Changeset 3495884


Ignore:
Timestamp:
03/31/2026 05:55:00 PM (16 hours ago)
Author:
Toro_Unit
Message:

Update to version 3.5.4 from GitHub

Location:
custom-post-type-permalinks
Files:
2 added
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • custom-post-type-permalinks/assets/banner-1544x500.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • custom-post-type-permalinks/assets/banner-772x250.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • custom-post-type-permalinks/assets/icon-128x128.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • custom-post-type-permalinks/assets/icon-256x256.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • custom-post-type-permalinks/tags/3.5.4/.github/workflows/test-and-release.yml

    r3166238 r3495884  
    33on:
    44  pull_request:
     5    paths-ignore:
     6      - "**.md"
    57  push:
    6     branches: [ master ]
    7     tags: ['*']
     8    branches: [master]
     9    tags: ["*"]
     10    paths-ignore:
     11      - "**.md"
    812
    913jobs:
    10 
    1114  test:
    1215    runs-on: ubuntu-latest
    1316    services:
    1417      mysql:
    15         image: mysql:5.7
     18        image: mysql:8.0
    1619        env:
    1720          MYSQL_ALLOW_EMPTY_PASSWORD: true
     
    2225        options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
    2326    strategy:
     27      fail-fast: false
    2428      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]
    4032
    41     name: PHP ${{ matrix.php }} / WP ${{ matrix.wp }} Test
     33    name: PHP ${{ matrix.php }} / WP ${{ matrix.wp }}${{ matrix.multisite && ' (multisite)' || '' }} Test
    4234    steps:
    4335      - uses: actions/checkout@v4
    4436
    4537      - name: Setup PHP
    46         uses: shivammathur/setup-php@master
     38        uses: shivammathur/setup-php@v2
    4739        with:
    48           tools: phpunit-polyfills, phpunit
    4940          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
    5643
    5744      - name: Cache composer packages
    58         uses: actions/cache@v3
     45        uses: actions/cache@v4
    5946        with:
    6047          path: vendor
    61           key: composer-${{ hashFiles('composer.lock') }}
     48          key: composer-${{ matrix.php }}-${{ hashFiles('composer.json') }}
     49          restore-keys: composer-${{ matrix.php }}-
    6250
    6351      - name: Composer install
    6452        run: composer update --optimize-autoloader --prefer-dist
    6553
     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
    6672      - name: Install WP Tests
    6773        run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 ${{ matrix.wp }} true
    6874
    69       - name: Build
    70         run: |
    71           bash ./bin/build.sh
    72 
    7375      - name: phpunit tests
    74         run: |
    75           composer test
    76           WP_MULTISITE=1 composer test
     76        run: composer test
     77        env:
     78          WP_MULTISITE: ${{ matrix.multisite && '1' || '' }}
    7779
    7880  lint:
    79     runs-on:  ubuntu-latest
     81    runs-on: ubuntu-latest
    8082    name: PHP lint
    8183    steps:
    8284      - uses: actions/checkout@v4
     85
    8386      - name: Setup PHP
    8487        uses: shivammathur/setup-php@v2
    8588        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
    9392
    9493      - name: Cache composer packages
    95         uses: actions/cache@v3
     94        uses: actions/cache@v4
    9695        with:
    9796          path: vendor
    98           key: composer-${{ hashFiles('composer.lock') }}
     97          key: composer-lint-${{ hashFiles('composer.json') }}
     98          restore-keys: composer-lint-
    9999
    100100      - name: Composer install
     
    107107    name: Release
    108108    runs-on: ubuntu-latest
    109     needs: [test,lint]
     109    needs: [test, lint]
    110110    steps:
    111111      - uses: actions/checkout@v4
    112112      - name: Build
    113113        if: contains(github.ref, 'tags/')
    114         run: |
    115           bash ./bin/build.sh
     114        run: bash ./bin/build.sh
    116115      - name: WordPress Plugin Deploy
    117116        if: contains(github.ref, 'tags/')
    118         uses: 10up/action-wordpress-plugin-deploy@master
     117        uses: 10up/action-wordpress-plugin-deploy@2.3.0
    119118        env:
    120119          SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
  • custom-post-type-permalinks/tags/3.5.4/.phpcs.xml.dist

    r2957454 r3495884  
    1919    <!-- Rules: Check PHP version compatibility -->
    2020    <!-- 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-"/>
    2222    <!-- https://github.com/PHPCompatibility/PHPCompatibilityWP -->
    2323    <rule ref="PHPCompatibilityWP"/>
    24     <config name="minimum_supported_wp_version" value="4.7"/>
     24    <config name="minimum_supported_wp_version" value="6.7"/>
    2525    <rule ref="WordPress-Core">
    2626        <exclude name="WordPress.Files.FileName" />
  • custom-post-type-permalinks/tags/3.5.4/custom-post-type-permalinks.php

    r3166238 r3495884  
    66 * Author: Toro_Unit
    77 * Author URI: https://torounit.com/
    8  * Version: 3.5.3
     8 * Version: 3.5.4
    99 * Text Domain: custom-post-type-permalinks
    1010 * License: GPL2 or later
    1111 * Domain Path: /language/
    12  * Requires at least: 6.1
    13  * Requires PHP: 7.4
     12 * Requires at least: 6.7
     13 * Requires PHP: 8.0
    1414 *
    1515 * @package Custom_Post_Type_Permalinks
    16  * @version 3.5.3
     16 * @version 3.5.4
    1717 */
    1818
  • custom-post-type-permalinks/tags/3.5.4/readme.txt

    r3166238 r3495884  
    11=== Custom Post Type Permalinks ===
    22
    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 
     3Contributors: Toro_Unit, inc2734, ixkaito, keita_kobayashi, strategio 
     4Donate link: https://www.paypal.me/torounit 
     5Tags: permalink, url, link, address, custom post type 
     6Requires at least: 6.7 
     7Tested up to: 6.9 
     8Requires PHP: 8.0 
     9License: GPLv2 or Later 
     10License URI: http://www.gnu.org/licenses/gpl-2.0.txt 
     11Stable tag:        3.5.4
    1312
    1413Edit the permalink of custom post type.
     
    2827Donation: Please send [My Wishlist](http://www.amazon.co.jp/registry/wishlist/COKSXS25MVQV) or [Paypal](https://www.paypal.me/torounit)
    2928
    30 
    3129= Translators =
    3230
    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)
    3634
    3735= Also checkout =
    3836
    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/)
    4138
    4239== Setting on Code ==
     
    7067== Installation ==
    7168
    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
     74That's it. You can access the permalinks setting by going to _Settings -> Permalinks_.
    7975
    8076== Screenshots ==
    8177
    82 * screenshot-1.png
     78- screenshot-1.png
    8379
    8480== Changelog ==
    8581
     82= 3.5.4 =
     83- Tested WP 6.9
     84
    8685= 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.
    8989
    9090= 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
    9394
    9495= 3.4.5 =
    95 * Update test for WP 5.7
     96
     97- Update test for WP 5.7
    9698
    9799= 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)
    99102
    100103= 3.4.3 =
    101 * Fix archive link bug fix.
     104
     105- Fix archive link bug fix.
    102106
    103107= 3.4.2 =
    104 * Tested WP 5.6.
     108
     109- Tested WP 5.6.
    105110
    106111= 3.4.1 =
    107 * Fix readme.
     112
     113- Fix readme.
    108114
    109115= 3.4.0 =
    110116
    111 * Tested 5.5 beta3
    112 * 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.
    115121
    116122= 3.3.5 =
    117123
    118 * Tested 5.4
    119 * fix CPTP_Module_Permalink::post_type_link.
     124- Tested 5.4
     125- fix CPTP_Module_Permalink::post_type_link.
    120126
    121127= 3.3.1 =
    122128
    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`.
    125131
    126132= 3.2.2 =
    127133
    128 * Fix readme.txt
     134- Fix readme.txt
    129135
    130136= 3.2.0 =
    131137
    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.
    135141
    136142= 3.1.4 =
    137143
    138 * Test for WordPress 4.9.
    139 * PHPCS fix.
     144- Test for WordPress 4.9.
     145- PHPCS fix.
    140146
    141147= 3.1.3 =
    142148
    143 * Test for WordPress 4.8.
    144 * Bug fix for attachment link.
     149- Test for WordPress 4.8.
     150- Bug fix for attachment link.
    145151
    146152= 3.1.1 =
    147153
    148 * Bug fix in `CPTP_Module_Setting::upgrader_process_complete`.
     154- Bug fix in `CPTP_Module_Setting::upgrader_process_complete`.
    149155
    150156= 3.1.0 =
    151157
    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` .
    154160
    155161= 3.0.0 =
    156162
    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.
    161167
    162168= 2.2.0 =
    163169
    164 * add `CPTP_Util::get_no_taxonomy_structure`.
     170- add `CPTP_Util::get_no_taxonomy_structure`.
    165171
    166172= 2.1.3 =
    167173
    168 * Set `no_taxonomy_structure` default `true`.
     174- Set `no_taxonomy_structure` default `true`.
    169175
    170176= 2.1.2 =
    171177
    172 * `rewirte => false` post type support.
     178- `rewirte => false` post type support.
    173179
    174180= 2.1.0 =
    175181
    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`.
    178184
    179185= 2.0.2 =
    180186
    181 * pointer html bug fix.
     187- pointer html bug fix.
    182188
    183189= 2.0.0 =
    184190
    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)
    188194
    189195= 1.5.4 =
    190196
    191 * Fixed removed parent post problem.
    192 
     197- Fixed removed parent post problem.
    193198
    194199= 1.5.3 =
    195200
    196 * readme fix.
     201- readme fix.
    197202
    198203= 1.5.0 =
    199204
    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`.
    203207
    204208= 1.4.0 =
    205209
    206 * Fix Translation Problem.
    207 
     210- Fix Translation Problem.
    208211
    209212= 1.3.1 =
    210213
    211 * bugfix `wp_get_archives`.
     214- bugfix `wp_get_archives`.
    212215
    213216= 1.3.0 =
    214217
    215 * bugfix for polylang.
     218- bugfix for polylang.
    216219
    217220= 1.2.0 =
    218221
    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`.
    221224
    222225= 1.1.0 =
    223226
    224 * WPML Test. thanks [keita_kobayashi](https://profiles.wordpress.org/keita_kobayashi) !
     227- WPML Test. thanks [keita_kobayashi](https://profiles.wordpress.org/keita_kobayashi) !
    225228
    226229= 1.0.5 =
    227230
    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) !
    230233
    231234= 1.0.4 =
    232235
    233 * option bug fix.
     236- option bug fix.
    234237
    235238= 1.0.3 =
    236239
    237 * add category rule, if only attached category to post type.
     240- add category rule, if only attached category to post type.
    238241
    239242= 1.0.2 =
    240243
    241 * category slug bug fix.
     244- category slug bug fix.
    242245
    243246= 1.0.0 =
    244247
    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.
    255258
    256259= 0.9.7 =
    257260
    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.
    261264
    262265= 0.9.6 =
    263266
    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.
    267270
    268271= 0.9.5.6 =
    269272
    270 * Strict Standard Error Fix.
     273- Strict Standard Error Fix.
    271274
    272275= 0.9.5.4 =
    273276
    274 * archive link bug fix.
    275 * Tested Up 3.9
     277- archive link bug fix.
     278- Tested Up 3.9
    276279
    277280= 0.9.5.3 =
    278281
    279 * “/”bug fix.
    280 * taxonomy tmplate bug fix.
     282- “/”bug fix.
     283- taxonomy tmplate bug fix.
    281284
    282285= 0.9.5.2 =
    283286
    284 * Archives Rewrite Fix.
     287- Archives Rewrite Fix.
    285288
    286289= 0.9.5.1 =
    287290
    288 * Admin Bug Fix.
     291- Admin Bug Fix.
    289292
    290293= 0.9.5 =
    291294
    292 * Big change plugin architecture.
    293 * Show `has_archive`, `with_front`.
     295- Big change plugin architecture.
     296- Show `has_archive`, `with_front`.
    294297
    295298= 0.9.4 =
    296299
    297 * Internal release.
     300- Internal release.
    298301
    299302= 0.9.3.3 =
    300303
    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.
    303306
    304307= 0.9.3.2 =
    305308
    306 * `wp_get_archives` Bug Fix.
     309- `wp_get_archives` Bug Fix.
    307310
    308311= 0.9.3.1 =
    309312
    310 * Tested 3.6
    311 * Bug Fix.
    312 
     313- Tested 3.6
     314- Bug Fix.
    313315
    314316= 0.9.3 =
    315317
    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.
    320321
    321322= 0.9 =
    322323
    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.
    329329
    330330= 0.8.7 =
    331331
    332 * Translate Bug Fix.
     332- Translate Bug Fix.
    333333
    334334= 0.8.6 =
    335335
    336 * Paging Bug Fix.
    337 * Commnent Paging.
    338 * Show pointer.
    339 *
     336- Paging Bug Fix.
     337- Commnent Paging.
     338- Show pointer.
     339-
    340340
    341341= 0.8.1 =
    342342
    343 * Bug Fix.
     343- Bug Fix.
    344344
    345345= 0.7.9.1 =
    346346
    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.
    351351
    352352= 0.7.8 =
    353353
    354 * Bug fix.
    355 
     354- Bug fix.
    356355
    357356= 0.7.7 =
    358357
    359 * Bug fix.
     358- Bug fix.
    360359
    361360= 0.7.6 =
    362361
    363 * Add parent's slug to hierarchical post type.
    364 
     362- Add parent's slug to hierarchical post type.
    365363
    366364= 0.7.5 =
    367365
    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.
    370367
    371368= 0.7.4 =
    372369
    373 * Bug fix taxonomy rewrite.
    374 
     370- Bug fix taxonomy rewrite.
    375371
    376372= 0.7.3 =
    377373
    378 * Changed part for saving the data.
     374- Changed part for saving the data.
    379375
    380376= 0.7.2 =
    381377
    382 * Reweite bug fix.
    383 * Prewview bug fix.
     378- Reweite bug fix.
     379- Prewview bug fix.
    384380
    385381= 0.7.1 =
    386382
    387 * Bug fix.
     383- Bug fix.
    388384
    389385= 0.7 =
    390386
    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.
    395390
    396391= 0.6.2 =
    397392
    398 * Fix `%author%` tag.
     393- Fix `%author%` tag.
    399394
    400395= 0.6 =
    401396
    402 * First release on wordpress.org
     397- First release on wordpress.org
  • custom-post-type-permalinks/trunk/.github/workflows/test-and-release.yml

    r3166238 r3495884  
    33on:
    44  pull_request:
     5    paths-ignore:
     6      - "**.md"
    57  push:
    6     branches: [ master ]
    7     tags: ['*']
     8    branches: [master]
     9    tags: ["*"]
     10    paths-ignore:
     11      - "**.md"
    812
    913jobs:
    10 
    1114  test:
    1215    runs-on: ubuntu-latest
    1316    services:
    1417      mysql:
    15         image: mysql:5.7
     18        image: mysql:8.0
    1619        env:
    1720          MYSQL_ALLOW_EMPTY_PASSWORD: true
     
    2225        options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
    2326    strategy:
     27      fail-fast: false
    2428      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]
    4032
    41     name: PHP ${{ matrix.php }} / WP ${{ matrix.wp }} Test
     33    name: PHP ${{ matrix.php }} / WP ${{ matrix.wp }}${{ matrix.multisite && ' (multisite)' || '' }} Test
    4234    steps:
    4335      - uses: actions/checkout@v4
    4436
    4537      - name: Setup PHP
    46         uses: shivammathur/setup-php@master
     38        uses: shivammathur/setup-php@v2
    4739        with:
    48           tools: phpunit-polyfills, phpunit
    4940          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
    5643
    5744      - name: Cache composer packages
    58         uses: actions/cache@v3
     45        uses: actions/cache@v4
    5946        with:
    6047          path: vendor
    61           key: composer-${{ hashFiles('composer.lock') }}
     48          key: composer-${{ matrix.php }}-${{ hashFiles('composer.json') }}
     49          restore-keys: composer-${{ matrix.php }}-
    6250
    6351      - name: Composer install
    6452        run: composer update --optimize-autoloader --prefer-dist
    6553
     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
    6672      - name: Install WP Tests
    6773        run: bash bin/install-wp-tests.sh wordpress_test root root 127.0.0.1 ${{ matrix.wp }} true
    6874
    69       - name: Build
    70         run: |
    71           bash ./bin/build.sh
    72 
    7375      - name: phpunit tests
    74         run: |
    75           composer test
    76           WP_MULTISITE=1 composer test
     76        run: composer test
     77        env:
     78          WP_MULTISITE: ${{ matrix.multisite && '1' || '' }}
    7779
    7880  lint:
    79     runs-on:  ubuntu-latest
     81    runs-on: ubuntu-latest
    8082    name: PHP lint
    8183    steps:
    8284      - uses: actions/checkout@v4
     85
    8386      - name: Setup PHP
    8487        uses: shivammathur/setup-php@v2
    8588        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
    9392
    9493      - name: Cache composer packages
    95         uses: actions/cache@v3
     94        uses: actions/cache@v4
    9695        with:
    9796          path: vendor
    98           key: composer-${{ hashFiles('composer.lock') }}
     97          key: composer-lint-${{ hashFiles('composer.json') }}
     98          restore-keys: composer-lint-
    9999
    100100      - name: Composer install
     
    107107    name: Release
    108108    runs-on: ubuntu-latest
    109     needs: [test,lint]
     109    needs: [test, lint]
    110110    steps:
    111111      - uses: actions/checkout@v4
    112112      - name: Build
    113113        if: contains(github.ref, 'tags/')
    114         run: |
    115           bash ./bin/build.sh
     114        run: bash ./bin/build.sh
    116115      - name: WordPress Plugin Deploy
    117116        if: contains(github.ref, 'tags/')
    118         uses: 10up/action-wordpress-plugin-deploy@master
     117        uses: 10up/action-wordpress-plugin-deploy@2.3.0
    119118        env:
    120119          SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
  • custom-post-type-permalinks/trunk/.phpcs.xml.dist

    r2957454 r3495884  
    1919    <!-- Rules: Check PHP version compatibility -->
    2020    <!-- 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-"/>
    2222    <!-- https://github.com/PHPCompatibility/PHPCompatibilityWP -->
    2323    <rule ref="PHPCompatibilityWP"/>
    24     <config name="minimum_supported_wp_version" value="4.7"/>
     24    <config name="minimum_supported_wp_version" value="6.7"/>
    2525    <rule ref="WordPress-Core">
    2626        <exclude name="WordPress.Files.FileName" />
  • custom-post-type-permalinks/trunk/custom-post-type-permalinks.php

    r3166238 r3495884  
    66 * Author: Toro_Unit
    77 * Author URI: https://torounit.com/
    8  * Version: 3.5.3
     8 * Version: 3.5.4
    99 * Text Domain: custom-post-type-permalinks
    1010 * License: GPL2 or later
    1111 * Domain Path: /language/
    12  * Requires at least: 6.1
    13  * Requires PHP: 7.4
     12 * Requires at least: 6.7
     13 * Requires PHP: 8.0
    1414 *
    1515 * @package Custom_Post_Type_Permalinks
    16  * @version 3.5.3
     16 * @version 3.5.4
    1717 */
    1818
  • custom-post-type-permalinks/trunk/readme.txt

    r3166238 r3495884  
    11=== Custom Post Type Permalinks ===
    22
    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 
     3Contributors: Toro_Unit, inc2734, ixkaito, keita_kobayashi, strategio 
     4Donate link: https://www.paypal.me/torounit 
     5Tags: permalink, url, link, address, custom post type 
     6Requires at least: 6.7 
     7Tested up to: 6.9 
     8Requires PHP: 8.0 
     9License: GPLv2 or Later 
     10License URI: http://www.gnu.org/licenses/gpl-2.0.txt 
     11Stable tag:        3.5.4
    1312
    1413Edit the permalink of custom post type.
     
    2827Donation: Please send [My Wishlist](http://www.amazon.co.jp/registry/wishlist/COKSXS25MVQV) or [Paypal](https://www.paypal.me/torounit)
    2928
    30 
    3129= Translators =
    3230
    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)
    3634
    3735= Also checkout =
    3836
    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/)
    4138
    4239== Setting on Code ==
     
    7067== Installation ==
    7168
    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
     74That's it. You can access the permalinks setting by going to _Settings -> Permalinks_.
    7975
    8076== Screenshots ==
    8177
    82 * screenshot-1.png
     78- screenshot-1.png
    8379
    8480== Changelog ==
    8581
     82= 3.5.4 =
     83- Tested WP 6.9
     84
    8685= 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.
    8989
    9090= 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
    9394
    9495= 3.4.5 =
    95 * Update test for WP 5.7
     96
     97- Update test for WP 5.7
    9698
    9799= 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)
    99102
    100103= 3.4.3 =
    101 * Fix archive link bug fix.
     104
     105- Fix archive link bug fix.
    102106
    103107= 3.4.2 =
    104 * Tested WP 5.6.
     108
     109- Tested WP 5.6.
    105110
    106111= 3.4.1 =
    107 * Fix readme.
     112
     113- Fix readme.
    108114
    109115= 3.4.0 =
    110116
    111 * Tested 5.5 beta3
    112 * 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.
    115121
    116122= 3.3.5 =
    117123
    118 * Tested 5.4
    119 * fix CPTP_Module_Permalink::post_type_link.
     124- Tested 5.4
     125- fix CPTP_Module_Permalink::post_type_link.
    120126
    121127= 3.3.1 =
    122128
    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`.
    125131
    126132= 3.2.2 =
    127133
    128 * Fix readme.txt
     134- Fix readme.txt
    129135
    130136= 3.2.0 =
    131137
    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.
    135141
    136142= 3.1.4 =
    137143
    138 * Test for WordPress 4.9.
    139 * PHPCS fix.
     144- Test for WordPress 4.9.
     145- PHPCS fix.
    140146
    141147= 3.1.3 =
    142148
    143 * Test for WordPress 4.8.
    144 * Bug fix for attachment link.
     149- Test for WordPress 4.8.
     150- Bug fix for attachment link.
    145151
    146152= 3.1.1 =
    147153
    148 * Bug fix in `CPTP_Module_Setting::upgrader_process_complete`.
     154- Bug fix in `CPTP_Module_Setting::upgrader_process_complete`.
    149155
    150156= 3.1.0 =
    151157
    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` .
    154160
    155161= 3.0.0 =
    156162
    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.
    161167
    162168= 2.2.0 =
    163169
    164 * add `CPTP_Util::get_no_taxonomy_structure`.
     170- add `CPTP_Util::get_no_taxonomy_structure`.
    165171
    166172= 2.1.3 =
    167173
    168 * Set `no_taxonomy_structure` default `true`.
     174- Set `no_taxonomy_structure` default `true`.
    169175
    170176= 2.1.2 =
    171177
    172 * `rewirte => false` post type support.
     178- `rewirte => false` post type support.
    173179
    174180= 2.1.0 =
    175181
    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`.
    178184
    179185= 2.0.2 =
    180186
    181 * pointer html bug fix.
     187- pointer html bug fix.
    182188
    183189= 2.0.0 =
    184190
    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)
    188194
    189195= 1.5.4 =
    190196
    191 * Fixed removed parent post problem.
    192 
     197- Fixed removed parent post problem.
    193198
    194199= 1.5.3 =
    195200
    196 * readme fix.
     201- readme fix.
    197202
    198203= 1.5.0 =
    199204
    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`.
    203207
    204208= 1.4.0 =
    205209
    206 * Fix Translation Problem.
    207 
     210- Fix Translation Problem.
    208211
    209212= 1.3.1 =
    210213
    211 * bugfix `wp_get_archives`.
     214- bugfix `wp_get_archives`.
    212215
    213216= 1.3.0 =
    214217
    215 * bugfix for polylang.
     218- bugfix for polylang.
    216219
    217220= 1.2.0 =
    218221
    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`.
    221224
    222225= 1.1.0 =
    223226
    224 * WPML Test. thanks [keita_kobayashi](https://profiles.wordpress.org/keita_kobayashi) !
     227- WPML Test. thanks [keita_kobayashi](https://profiles.wordpress.org/keita_kobayashi) !
    225228
    226229= 1.0.5 =
    227230
    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) !
    230233
    231234= 1.0.4 =
    232235
    233 * option bug fix.
     236- option bug fix.
    234237
    235238= 1.0.3 =
    236239
    237 * add category rule, if only attached category to post type.
     240- add category rule, if only attached category to post type.
    238241
    239242= 1.0.2 =
    240243
    241 * category slug bug fix.
     244- category slug bug fix.
    242245
    243246= 1.0.0 =
    244247
    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.
    255258
    256259= 0.9.7 =
    257260
    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.
    261264
    262265= 0.9.6 =
    263266
    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.
    267270
    268271= 0.9.5.6 =
    269272
    270 * Strict Standard Error Fix.
     273- Strict Standard Error Fix.
    271274
    272275= 0.9.5.4 =
    273276
    274 * archive link bug fix.
    275 * Tested Up 3.9
     277- archive link bug fix.
     278- Tested Up 3.9
    276279
    277280= 0.9.5.3 =
    278281
    279 * “/”bug fix.
    280 * taxonomy tmplate bug fix.
     282- “/”bug fix.
     283- taxonomy tmplate bug fix.
    281284
    282285= 0.9.5.2 =
    283286
    284 * Archives Rewrite Fix.
     287- Archives Rewrite Fix.
    285288
    286289= 0.9.5.1 =
    287290
    288 * Admin Bug Fix.
     291- Admin Bug Fix.
    289292
    290293= 0.9.5 =
    291294
    292 * Big change plugin architecture.
    293 * Show `has_archive`, `with_front`.
     295- Big change plugin architecture.
     296- Show `has_archive`, `with_front`.
    294297
    295298= 0.9.4 =
    296299
    297 * Internal release.
     300- Internal release.
    298301
    299302= 0.9.3.3 =
    300303
    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.
    303306
    304307= 0.9.3.2 =
    305308
    306 * `wp_get_archives` Bug Fix.
     309- `wp_get_archives` Bug Fix.
    307310
    308311= 0.9.3.1 =
    309312
    310 * Tested 3.6
    311 * Bug Fix.
    312 
     313- Tested 3.6
     314- Bug Fix.
    313315
    314316= 0.9.3 =
    315317
    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.
    320321
    321322= 0.9 =
    322323
    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.
    329329
    330330= 0.8.7 =
    331331
    332 * Translate Bug Fix.
     332- Translate Bug Fix.
    333333
    334334= 0.8.6 =
    335335
    336 * Paging Bug Fix.
    337 * Commnent Paging.
    338 * Show pointer.
    339 *
     336- Paging Bug Fix.
     337- Commnent Paging.
     338- Show pointer.
     339-
    340340
    341341= 0.8.1 =
    342342
    343 * Bug Fix.
     343- Bug Fix.
    344344
    345345= 0.7.9.1 =
    346346
    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.
    351351
    352352= 0.7.8 =
    353353
    354 * Bug fix.
    355 
     354- Bug fix.
    356355
    357356= 0.7.7 =
    358357
    359 * Bug fix.
     358- Bug fix.
    360359
    361360= 0.7.6 =
    362361
    363 * Add parent's slug to hierarchical post type.
    364 
     362- Add parent's slug to hierarchical post type.
    365363
    366364= 0.7.5 =
    367365
    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.
    370367
    371368= 0.7.4 =
    372369
    373 * Bug fix taxonomy rewrite.
    374 
     370- Bug fix taxonomy rewrite.
    375371
    376372= 0.7.3 =
    377373
    378 * Changed part for saving the data.
     374- Changed part for saving the data.
    379375
    380376= 0.7.2 =
    381377
    382 * Reweite bug fix.
    383 * Prewview bug fix.
     378- Reweite bug fix.
     379- Prewview bug fix.
    384380
    385381= 0.7.1 =
    386382
    387 * Bug fix.
     383- Bug fix.
    388384
    389385= 0.7 =
    390386
    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.
    395390
    396391= 0.6.2 =
    397392
    398 * Fix `%author%` tag.
     393- Fix `%author%` tag.
    399394
    400395= 0.6 =
    401396
    402 * First release on wordpress.org
     397- First release on wordpress.org
Note: See TracChangeset for help on using the changeset viewer.