Title: Fast Backend
Author: WDM
Published: <strong>2021 年 4 月 11 日</strong>
Last modified: 2025 年 11 月 28 日

---

搜索插件

![](https://ps.w.org/fast-backend/assets/banner-772x250.png?rev=2535311)

![](https://ps.w.org/fast-backend/assets/icon.svg?rev=2535311)

# Fast Backend

 作者：[WDM](https://profiles.wordpress.org/wdm-team/)

[下载](https://downloads.wordpress.org/plugin/fast-backend.1.5.1.zip)

 * [详情](https://cn.wordpress.org/plugins/fast-backend/#description)
 * [评价](https://cn.wordpress.org/plugins/fast-backend/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/fast-backend/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/fast-backend/#developers)

 [支持](https://wordpress.org/support/plugin/fast-backend/)

## 描述

Do you think the WordPress backend is too slow? Good news, this plugin will improve
the speed of your WordPress Admin backend by some efficient tweaks.

 * Native Lazy Loading of Images in the backend
 * Reduced WordPress Heartbeat
 * Less autosaving of posts
 * Loading of plugin stylesheets in the footer

“Fast Backend” will only have affects to the Admin area of WordPress and won’t have
any impact on your theme.

### Native Lazy Loading of Images

The plugin adds loading=”lazy” attributes to images if missing to take advantage
of native lazy loading.

### Reduced WordPress Heartbeat

Usually the WordPress heartbeat is every 15 seconds. The plugin extends the time
period to 45 seconds.

### Autosaving every 2 minutes

Instead of autosaving posts every 60 seconds, we’ll do this only every 120 seconds.

### Loading of plugin stylesheets in the footer

The plugin moves plugin stylesheets to the bottom of the page to prevent them to
block rendering.

## 安装

Upload the the plugin, activate it, and you’re done. Congrats, your backend will
be faster!

## 常见问题

### Do I need to configure anything?

No. “Fast Backend” is very lightweight. It has no settings, just activate it and
it works immediately.

### As a developer, can I influence how the plugin works?

Yes, you can! “Fast Backend” provides several hooks to configure the loading of 
stylesheets in the backend.

By default “Fast Backend” moves all plugin stylesheets into the footer to improve
loading performance.

But sometimes you might want to adjust that. Therefore you are free to move stylesheets
where you need them.

And more than that. You are even free to move **all** stylesheets (not just plugin
stylesheets) into the `<head>`, the bottom of the `<body>`, lazy load them or even
remove them entirely.

_Available hooks:_

 * **`fast_backend_stylesheets_in_head`**
 * Configure the stylesheets that should be moved into the `<head>`.
 * You can use this filter to move individual plugin stylesheets into the `<head
   >` that by default would be loaded at the bottom.
 * _Example:_
 *     ```
       add_filter( 'fast_backend_stylesheets_in_head', function ($stylesheet_ids) { return $stylesheet_ids; });
       ```
   
 * **`fast_backend_stylesheets_in_footer`**
 * Configure the stylesheets that should be moved to the bottom of the `<body>`.
 * You can use this filter to move non-plugin stylesheets (e.g. theme or even core
   stylesheets) to the bottom.
 * _Example:_
 *     ```
       add_filter( 'fast_backend_stylesheets_in_footer', function ($stylesheet_ids) { return $stylesheet_ids; });
       ```
   
 * **`fast_backend_stylesheets_lazy_load`**
 * Configure the stylesheets that should be lazy loaded after page load.
 * You can use this filter to lazy load stylesheets that are not essential for page
   load.
 * _Example:_
 *     ```
       add_filter( 'fast_backend_stylesheets_lazy_load', function ($stylesheet_ids) { return $stylesheet_ids; });
       ```
   
 * **`fast_backend_stylesheets_remove`**
 * Configure the stylesheets that should not be loaded at all.
 * You can use this filter to remove stylesheets that are added by plugins or themes
   that are not used in your setup.
 * _Example:_
 *     ```
       add_filter( 'fast_backend_stylesheets_remove', function ($stylesheet_ids) { return $stylesheet_ids; });
       ```
   

For more details please refer to the code documentation in the `fast-backend.php`.

## 评价

![](https://secure.gravatar.com/avatar/b386c3be63ad40515532f06f0a3f8fc3c5a9c760da75708f03eff64f35cd66d4?
s=60&d=retro&r=g)

### 󠀁[Nice simple plugin](https://wordpress.org/support/topic/nice-simple-plugin-30/)󠁿

 [shawfactor](https://profiles.wordpress.org/shawfactor/) 2021 年 4 月 12 日

Does what it says, and does not have unnecessary features. Follows the traditional
decisions not options philosophy. Pity more plugins are not lik

 [ 阅读所有0条评价 ](https://wordpress.org/support/plugin/fast-backend/reviews/)

## 贡献者及开发者

「Fast Backend」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ WDM ](https://profiles.wordpress.org/wdm-team/)

「Fast Backend」插件已被翻译至 1 种本地化语言。 感谢[所有译者](https://translate.wordpress.org/projects/wp-plugins/fast-backend/contributors)
为本插件所做的贡献。

[帮助将「Fast Backend」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/fast-backend)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/fast-backend/)，查看
[SVN仓库](https://plugins.svn.wordpress.org/fast-backend/)，或通过[RSS](https://plugins.trac.wordpress.org/log/fast-backend/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/fast-backend/)。

## 更新日志

#### 1.5.1

 * Fixed: Account for escaping in inline scripts

#### 1.5

 * Added: Support custom locations of the `wp_content` directory
 * Added: `fast_backend_stylesheets_in_head` filter
 * Added: `fast_backend_stylesheets_in_footer` filter
 * Added: `fast_backend_stylesheets_lazy_load` filter
 * Added: `fast_backend_stylesheets_remove` filter

#### 1.4

 * Added: Loading of plugin stylesheets in the footer
 * Fixed: Prevent multiple loading attributes for images

#### 1.3

 * No lazy loading when creating new post

#### 1.2

 * Disabled native Lazy Loading in Gutenberg Editor

#### 1.1

 * Improved Lazy Loading in Media Library

#### 1.0

 * Initial release.
 * Native Lazy Loading of Images
 * Reduced Heartbeat
 * Less Autosaving

## 额外信息

 *  版本 **1.5.1**
 *  最后更新：**5 月前**
 *  活跃安装数量 **100+**
 *  WordPress 版本 ** 5.0 或更高版本 **
 *  已测试的最高版本为 **6.9.4**
 *  PHP 版本 ** 7.2 或更高版本 **
 *  语言
 * [English (US)](https://wordpress.org/plugins/fast-backend/) 和 [German](https://de.wordpress.org/plugins/fast-backend/).
 *  [翻译成简体中文](https://translate.wordpress.org/projects/wp-plugins/fast-backend)
 * 标签
 * [backend](https://cn.wordpress.org/plugins/tags/backend/)[performance](https://cn.wordpress.org/plugins/tags/performance/)
 *  [高级视图](https://cn.wordpress.org/plugins/fast-backend/advanced/)

## 评级

 5 星（最高 5 星）。

 *  [  1 条 5 星评价     ](https://wordpress.org/support/plugin/fast-backend/reviews/?filter=5)
 *  [  0 条 4 星评价     ](https://wordpress.org/support/plugin/fast-backend/reviews/?filter=4)
 *  [  0 条 3 星评价     ](https://wordpress.org/support/plugin/fast-backend/reviews/?filter=3)
 *  [  0 条 2 星评价     ](https://wordpress.org/support/plugin/fast-backend/reviews/?filter=2)
 *  [  0 条 1 星评价     ](https://wordpress.org/support/plugin/fast-backend/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/fast-backend/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/fast-backend/reviews/)

## 贡献者

 *   [ WDM ](https://profiles.wordpress.org/wdm-team/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/fast-backend/)

## 捐助

您愿意支持这个插件的发展吗?

 [ 捐助此插件 ](https://www.webdesign-muenchen.de)