티스토리 수익 글 보기
However, I’ve noticed some terms on this site self-reference without proper slug conversion.
For example, “Hook”, “hooks”, or “hooking” may incorrectly link to https://wordpress.org/documentation/article/wordpress-glossary/#Hook (invalid) instead of the valid #hook, which should point to https://wordpress.org/documentation/article/wordpress-glossary/#hook. ]]>
It mentions [autosave frequency is two minutes](https://wordpress.org/documentation/article/wordpress-glossary/#autosave),
> When you are writing or editing your posts and pages, the changes you make are automatically saved every 2 minutes.
However, according to the [revisions docs](https://wordpress.org/documentation/article/revisions/#autosaves),
> There is only ever a maximum of one autosave per user for any given post. New autosaves overwrite old autosaves. This means that no, your tables do not grow by one row every 60 seconds.
Confirmed via the [functions ref](https://developer.wordpress.org/reference/functions/wp_functionality_constants/) that, by default, the interval is one minute.
“`
if ( ! defined( ‘AUTOSAVE_INTERVAL’ ) ) {
define( ‘AUTOSAVE_INTERVAL’, MINUTE_IN_SECONDS );
}
“`
Can someone please update this page so that the line reads something like,
> When you are writing or editing your posts and pages, the changes you make are automatically saved every 60 seconds.