search
HomeBackend DevelopmentPHP TutorialHow to perfectly implement wordpress prohibiting article revision and automatic saving, wordpress automatic saving_PHP tutorial

The perfect way to implement wordpress prohibiting article revision and automatic saving, wordpress automatically saves

After using WordPress for so long, I have always hated the article revision and auto-save functions of WordPress. I have also used the super switch plug-in to disable the article revision and auto-save functions of WordPress. However, my blog already has enough plug-ins, so I had to modify WordPress. The main program is used to implement the functions of prohibiting article revision and automatic saving. But the disadvantage of this method is that every time WordPress is upgraded, the WordPress source code must be modified again, which is really troublesome. Today I accidentally bumped into the ZWW blog and found this non-plug-in-free source code method to implement wordpress's prohibition of article revisions and automatic saving. Share it with everyone!

The method of use is very simple, just add the corresponding code to functions.php in the theme directory. The code is as follows:

Copy code The code is as follows:

/* Remove automatic saves and revisions */
remove_action('pre_post_update', 'wp_save_post_revision' );
add_action( 'wp_print_scripts', 'disable_autosave' );
function disable_autosave(){
          wp_deregister_script('autosave');                                                 }

Test environment: WordPress 3.1.2, in principle, all versions 3.0 and above are supported.

How to solve the problem of discontinuous IDs in wordpress38 published articles

If you don’t particularly care, even discontinuity is irrelevant, and this article won’t make much sense to you.
1. Disable article revision
The so-called article revision means that every time you modify an article, it will automatically save the article version before modification for you. The professional term is called version control, which ensures that the article is modified by mistake. In some cases, the previous content can be restored. This is very helpful in maintaining Wiki documents, but as our small blog, it does not seem to be of much use. Moreover, this revision occupies an ID in the database, which also causes One of the problems with discontinuous article IDs. To disable article revisions, you can add in the wp-config.php file:

1

define('WP_POST_REVISIONS', false);

2. Delete the article Revisions
After disabling article revisions, the previously created article revisions are still stored in the database. These are actually of little use and occupy the ID. We can delete them. As for how to delete, you can execute the following SQL statement in phpmyadmin (make a backup):

12345

DELETE a,b,cFROM wp_posts aLEFT JOIN wp_term_relationships b ON (a.ID = b. object_id)LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)WHERE a.post_type = 'revision';

3. Delete unnecessary attachments
I believe many bloggers will do this when publishing articles Upload/insert some attachments, such as images, videos, music, etc. These attachments can be seen in the WordPress management background – Media Library. Different media corresponds to different articles. But you should note that these media also occupy the article ID, and they are stored in the same database table wp_posts as the article. If you particularly pursue that the IDs of the articles must be perfectly continuous, please do not upload/insert these media when publishing the article, and please delete the previously uploaded media in the WordPress management background – media library (note that this operation is not just deletion) records, and the files you uploaded will be deleted), please use FTP to re-upload these files if necessary.
4. Disable auto-save
The advantage of auto-save is that when you edit an article, the system will automatically save the edited article for you every short period of time to prevent the webpage from suddenly closing and causing thousands of words to be written before. All of a sudden it was gone. The disadvantage is that each article will have an automatically saved record, which also occupies an article ID, which is one of the reasons why the article IDs are not consecutive. If you do not need this function, please use the following two files:

12

wp-admin/post-new.phpwp-admin/post.php

Comment out this line:

1

//wp_enqueue_script ('autosave');

5. Rearrange discontinuous article IDs
The following method no longer supports the latest version of WordPress. After completing the above four steps, it is basically guaranteed that the IDs of the articles published in the future will be continuous. However, the IDs of the articles published before are still in chaos. They must be rearranged to ensure that the IDs are continuous. I wrote a PHP script. You can download it from the following URL. After downloading, open it with a text editor. Modify the database information according to the instructions at the beginning. Then upload the PHP file to your blog space. Run it and see OK. , you can go to phpmyadmin to check whether the IDs in the wp_posts table are consecutive. Again, please back up your database before starting. (If you use post id as a fixed link, it may change the URL of all articles, which will affect search engine inclusion; if you use a plug-in to create a new database table, such as a voting plug-in, etc., problems will also occur; if A page with a parent-child relationship has been created in your blog. If you run the following script, this relationship will be lost. Please use it with caution!)... The rest of the text >>

How to turn off the automatic draft saving function in wordpress?

Just add the following code to wp-config.php:
Copy the code as follows:
define('AUTOSAVE_INTERVAL', 120 ); // Set the auto-save interval in seconds, the default is 60
define('WP_POST_REVISIONS', false ); // Disable article revision function
define('WP_POST_REVISIONS', 3); //

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/904914.htmlTechArticleThe perfect way to implement wordpress's prohibition of article revisions and automatic saving. Wordpress automatically saves using WordPress for so long. I have always hated wordpress. Article revision and auto-save functions also use...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
wordpress后台乱码怎么办wordpress后台乱码怎么办Feb 03, 2023 pm 01:48 PM

wordpress后台乱码的解决办法:1、在wordpress的“wp-admin”文件夹下找到“admin.header.php”文件;2、将“charset”属性值设置为“UTF-8”格式即可恢复正常。

如何解决wordpress标签错误问题如何解决wordpress标签错误问题Feb 03, 2023 pm 02:03 PM

wordpress标签错误的解决办法:1、找到并打开wordpress的“wp-includes”目录下的“class-wp.php”文件;2、修改内容为“$pathinfo = isset( $_SERVER['PATH_INFO'] )?mb_convert_encoding($_SERVER['PATH_INFO'],'utf-8','GBK') : '';”即可。

WordPress设置独立的Description和KeywordsWordPress设置独立的Description和KeywordsFeb 21, 2023 am 11:14 AM

你下载的WordPress主题提供的keywords和description这两个meta标签一般都做得很差,或者根本就不提供,这样不利于SEO。本文将指导你如何给主页、分类、页面以及文章页添加单独的Description 和 Keywords。

wordpress乱码怎么办wordpress乱码怎么办Mar 09, 2023 am 09:13 AM

wordpress乱码的解决办法:1、修改“wp-config.php”文件里的“define(’DB_CHARSET’, ‘utf8′);”为“define(’DB_CHARSET’, ”);”;2、把新数据库的编码设置成“latin1_swedish_ci”;3、以uft8的格式导入备份的数据库文件即可。

wordpress进不去怎么办wordpress进不去怎么办Feb 23, 2023 am 09:41 AM

wordpress进不去的解决办法:1、把地址栏“wp-login.php”后面的参数删掉,然后重新输入密码登录;2、登录FTP,下载“pluggable.php”文件,然后找到“ADMIN_COOKIE_PATH”并将它替换为“SITECOOKIEPATH”即可。

wordpress是saas吗wordpress是saas吗Feb 21, 2023 am 10:40 AM

wordpress不是saas。SaaS是一种软件销售模式,它主要针对云端应用软件,而WordPress是一款CMS系统,它主要针对网站构建和管理。虽然WordPress可以作为SaaS提供服务,但它本质上不是一种SaaS应用。

2023年最新WordPress视频教程推荐2023年最新WordPress视频教程推荐Oct 25, 2019 pm 01:12 PM

本次PHP中文网整合了相关的视频教程,中文手册,以及相关的精选文章安利给大家,统统免费!!!通过我们分享的视频,可随时随地免费观看教程视频,也不需要迅雷或者百度网盘下载了。

wordpress是哪一年的wordpress是哪一年的Feb 01, 2023 am 10:26 AM

wordpress是2003年发布的;Matt于2003年5月27日宣布推出第一版WordPress,受到了社区的欢迎,它基于b2 Cafelog并有显著改进;WordPress的第一个版本包括全新的管理界面、模板、XHTML 1.1兼容模板、内容编辑器。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.