最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
WordPress文章ID不连续和关闭自动保存关闭解决办法
时间:2022-06-25 19:18:39 编辑:袖梨 来源:一聚教程网
第一步:找到并打开 wp-config.php 文件,在 $table_prefix = 'wp_'; 前面添加如下代码:
| 代码如下 | 复制代码 |
|
define('AUTOSAVE_INTERVAL', false ); //自动保存时间 define('WP_POST_REVISIONS', false); //修定版本开启/关闭 |
|
第二步:找到并打开 wp-adminpost-new.php 和 wp-adminpost.php 这两个文件,将其 “wp_enqueue_script(‘autosave’);” 注释或删除掉。特别要注意一下,post.php和post-new.php这两个文件在很多文件夹里面都有,注意路径,前往不要改错了。
| 代码如下 | 复制代码 |
|
//wp_enqueue_script('autosave'); |
|
第三步:找到并打开 wp-adminincludespost.php 文件,找到 if ( $create_in_db ) {
| 代码如下 | 复制代码 |
|
if ( $create_in_db ) { // Cleanup old auto-drafts more than 7 days old $old_posts = $wpdb->get_col( "SELECT ID FROM $wpdb->posts WHERE post_status = 'auto-draft' AND DATE_SUB( NOW(), INTERVAL 7 DAY ) > post_date" ); foreach ( (array) $old_posts as $delete ) wp_delete_post( $delete, true ); // Force delete $post_id = wp_insert_post( array( 'post_title' => __( 'Auto Draft' ), 'post_type' => $post_type, 'post_status' => 'auto-draft' ) ); $post = get_post( $post_id ); if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post->post_type, 'post-formats' ) && get_option( 'default_post_format' ) ) set_post_format( $post, get_option( 'default_post_format' ) ); } else { |
|
替换成如下代码
| 代码如下 | 复制代码 |
|
if ( $create_in_db ) { global $current_user;//获取当前登录管理用户 $post = $wpdb->get_row( "SELECT * FROM $wpdb->posts WHERE post_status = 'auto-draft' AND post_type = '$post_type' AND post_author = $current_user->ID ORDER BY ID ASC LIMIT 1" );//获取最早一条自动草稿 if ( !$post ) { $post_id = wp_insert_post( array( 'post_title' => __( 'Auto Draft' ), 'post_type' => $post_type, 'post_status' => 'auto-draft' ) ); $post = get_post( $post_id ); } if ( current_theme_supports( 'post-formats' ) && post_type_supports( $post->post_type, 'post-formats' ) && get_option( 'default_post_format' ) ) set_post_format( $post, get_option( 'default_post_format' ) ); } else { |
|
注意:修改完成后系统已无自动保存功能,需要手工保存草稿
相关文章
- 异环预下载时间介绍 05-15
- 枪炮公主与勇者测试资格获取方式汇总|最新参与渠道与申请流程详解 05-15
- 漫蛙漫画网页版下载最新版本-漫蛙漫画APP官方正版安装入口 05-15
- 天府通办如何查询客运车辆运输证年审 05-15
- 精灵塔塔上线时间 精灵塔塔正式开放日期与开服信息 05-15
- 英语CET4国际版快速查分入口-英语CET4港澳台便捷查询通道 05-15