이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Speed Up – Optimize CSS Delivery

설명

This small plugin (5 Kb) loads the stylesheets asynchronously and improve page load times.

The recommended use of this plugin is to load your vital stylesheets synchronously and non-vital CSS files asynchronously.
Non-vital CSS-files can be for example: fonts, icons, before the fold template-specific CSS, etc.

You can choose which files to load synchronously with a filter in your function.php, eg.:

// exclude main and child stylesheets from delivery optimization
function exclude_from_delivery_optimization($handle){
    return in_array($handle, array('main-stylesheet', 'child-stylesheet'));
}
add_filter('speed-up-optimize-css-delivery', 'exclude_from_delivery_optimization');

Note: this only works if your other plugins and theme add the CSS correctly.

설치

  1. Upload the complete speed-up-optimize-css-delivery folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

후기

2022년 7월 15일
This plug-in is a blessing This plug-in is the best! We have to give a big prize to the person who created this plug-in. Thank you very much.
2022년 3월 25일
Does what it says on the tin, which Google pagespeed likes a lot.
2020년 6월 24일 1 reply
THIS PLUGIN IS THE BEST PLUGIN I'VE EVER SEEN IN WORDPRESS. I had page load speeds around 3 to 5 seconds, but after I installed and activated this plugin, it dropped to 1.5 seconds. I was like "Bruh, is this for real? I have been trying to speed up my page for days, and it took only 1 plugin? Woah." I appreciate the work.
2018년 2월 1일
This is great plugin! By use this plugin is possible to get green level into Google Page Speed Insight without using any cache plugin. Off course javascripts have to be loaded asynchronously and (or) defer.
모든 8 평가 읽기

기여자 & 개발자

“Speed Up – Optimize CSS Delivery”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Speed Up – Optimize CSS Delivery”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.0.11

  • Tested up to WordPress 6.0

1.0.10

  • Tested up to WordPress 5.9

1.0.9

  • Tested up to WordPress 5.7

1.0.8

  • Tested up to WordPress 5.5

1.0.7

  • Tested up to WordPress 5.5

1.0.6

  • Tested up to WordPress 5.3

1.0.5

  • Tested up to WordPress 5.2

1.0.4

  • Fix some css are loaded two time

1.0.3

  • Update loadCSS

1.0.2

  • Tested up to WordPress 4.9
  • Update loadCSS

1.0.1

  • Fix bug css not loaded if cached.

1.0.0

  • Initial release.