使用Memcached内存缓存优化 WordPress 自动草稿功能

Memcached 内存缓存可以优化 WordPress 很多功能,让你的 WordPress 变得更快,接下来我们会通过一系列文章来讲解我是如何使用 Memcached 来深度优化 WordPress。

WordPress 自动草稿功能

在 WordPress 后台点击新建文章的时候,都会创建一个状态为 auto-draft 的草稿,并且每次点击新建文章的时候都会新建一个,然后 WordPress 会执行一个定时作业 wp_scheduled_auto_draft_delete 将所有 auto-draft 的草稿删除了,这也是 POST ID 不连续的原因之一。

使用内存缓存优化自动草稿功能

虽然不会造成什么的问题,但是连续的创建新的 auto-draft 的草稿,然后删除,是一种浪费,所以我们可以使用内存缓存来优化自动草稿功能,下面代码把这个自动草稿放到内存中,一小时内直接使用,不在创建新的。

请复制到当前主题的 functions.php 文件中:

add_action('current_screen', function ($current_screen){  
    // 只有新建文章的时候才执行  
    if($screen_base != 'post' || $current_screen->post_type == 'attachment' || $current_screen->action != 'add'){  
        return;  
    }  
  
    //如果内存中已有上次创建的自动草稿  
    if($last_post_id = wp_cache_get(get_current_user_id(), 'wpjam_'.$current_screen->post_type.'_last_post_id')){  
        $post   = get_post($last_post_id);  
        if($post && $post->post_status == 'auto-draft'){  
            wp_redirect(admin_url('post.php?post='.$last_post_id.'&action=edit'));    
            exit;  
        }  
    }  
  
    add_action('admin_footer', function(){  
        global $post;  
        //将自动草稿ID缓存到内存中  
        wp_cache_set(get_current_user_id(), $post->ID, 'wpjam_'.$post->post_type.'_last_post_id', HOUR_IN_SECONDS);  
    });  
}, 10, 2);

 

© 版权声明
THE END
喜欢就支持一下吧
点赞0赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容