このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

Limit Modified Date

説明

Warning This plugin is no longer supported, and does not always work with the Gutenberg block editor.

I recommend using Change Last Modified Date instead.

Summary

Prevent the modified date from changing when making minor changes to your content.

This plugin adds a checkbox to the Publish box, “Don’t update the modified date”. When checked, saving your post does not update the post modified date.

Minor changes like adding tags or fixing typos won’t bump the modified date.

This plugin will maintain the previous modified date. It does not let you specify a custom modified date.

When you’re ready to publish a major content change, you can uncheck this setting before saving the post.

Customization

Your theme will need to use get_the_modified_date() to display the modified date.

This plugin only applies to the post post type by default. You can customize which post types it appears on using the limit_modified_date_post_types filter.

add_filter( 'limit_modified_date_post_types', function( $post_types ) {
    $post_types[] = 'page';
    return  $post_types;
});

スクリーンショット

  • Published and modified date shown in theme
  • Checkbox in post editor

インストール

  1. Upload limit-modified-date to the /wp-content/plugins/ directory.
  2. Activate the plugin through the Plugins menu in WordPress.
  3. When editing a post, check “Don’t update the modified date” and save your post.

評価

2021年7月5日
WP should update modified date only when you make major changes to the article. I think WP should ignore small changes, for example, correction of character, Replaceing image,changing tag, etc.
2021年1月1日
Thanks for this great little plugin. I had an issue after migrating to a new SEO plugin. I had a few hundred posts that needed a simple update to fix the issue. But as my blog shows an updated date, it would have wrecked the real recency of articles. It solved the problem! And also, now I can make any minor updates without changing the modified date. Thanks again.
2020年6月26日
May god bless the author of this plugin. This is a very very useful plugin for sites which display Last modified date on the front end. repeatedly the one issue which arises is that u make one small change and the date changes. This plugin helps us do massive changes on site without tweaking the dates too much. Thanks again
2020年4月23日
I have been long wanting an option like that. Didn't know it was available as a plugin. Thank you so much.
8件のレビューをすべて表示

貢献者と開発者

Limit Modified Date はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“Limit Modified Date” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

Version 1.0.0
* Initial release