Este plugin no se ha probado con las últimas 3 versiones mayores de WordPress. Puede que ya no tenga soporte ni lo mantenga nadie, o puede que tenga problemas de compatibilidad cuando se usa con las versiones más recientes de WordPress.

CSS Above The Fold

Descripción

Improve user experience by having your above-the-fold (top of the page) CSS styles in-page.

Even if the rest of the CSS files take a seconds to load, these specific CSS styles displayed from the head section ensure a quick rendering of your page and better score in testing systems like Google Page Speed Insights.

But you do not need to maintain two separate stylesheets, just select specific fragments of your theme style file with a special markup to create an above-the-fold styles joining the CSS fragments in the head section.

This plugin enables a special open and close tags that you can insert editing your style.css theme file to surround pieces of code:

[css-above-the-fold]

… Your theme CSS code fragment …

[/css-above-the-fold]

But this syntax is not an standard CSS, so you need to include this tags between CSS comments, there are two ways to do it:

1. Comment whole section

The easiest way, the CSS is rendered only in the head but not in the stylesheet.
This kind of markup does not allow to use your own CSS comments inside the fragment.
Take care to use this way only when the plugin is active, because you are commenting some parts of your theme stylesheet.

/* [css-above-the-fold]

… CSS code fragment …

[/css-above-the-fold] */

2. Comment only the tags

The unobtrusive way, it allows you to include comments inside fragments, but the fragments are rendered both in the head section and the CSS file.
This way is plugin-independent, and your theme stylesheet will keep running with this plugin activated or not.

/* [css-above-the-fold] */

… CSS code fragment …

/* [/css-above-the-fold] */

You can use these two kinds of markup combined in your CSS File.

The resulting CSS fragments introduced in the header are compacted and minified.

This plugin only read the style.css file when it is modified, and stores the results using the WP options API.

Capturas

  • A edited CSS file using Whole section commented fragment
  • A fragment commenting only the special markup
  • Styles in-page resulting of joining css theme fragments

Instalación

  1. Download the plugin from WordPress plugin repository
  2. Unzip and upload css-above-the-fold folder to the /wp-content/plugins/ directory
  3. Activate the plugin through the ‘Plugins’ menu in WordPress
  4. Edit your theme CSS file style.css following the instructions above

Preguntas frecuentes

My theme will be dependent on this plugin?

Only if you use the Comment whole section type of fragment selection. However, it is easily reversible uncommenting the sections.
If you want an independent stylesheet use the Comment only the tags technique.

Why is important rendering CSS file on the top of the page?

Prioritizing above-the-fold content it’s an important factor to speed-up your website, rankings improvement and conversion.

Why using this technique of selecting fragments from the theme stylesheet file?

The aim is simplicity, editing a single file avoids having to maintain two separate stylesheets.

And what CSS should I mark to display it “above-the-fold”?

That is the million dollar question, this plugin does not do this task automatically, only provides a method for easy and quick implementation.
There are some tools to help you in the process of select the rights fragments of code, and maybe you will have to modify your stylesheet structure to properly isolate these CSS fragments.
You can find a lot of resouces about this topic performing a simple Google search like “css above the fold”.

Reseñas

3 de septiembre de 2016 1 respuesta
Good idea for a plugin. Works perfectly. Thanks.
Leer toda la 1 reseña

Colaboradores y desarrolladores

Este software es de código abierto. Las siguientes personas han contribuido a este plugin.

Colaboradores

Traduce "CSS Above The Fold" a tu idioma.

¿Interesado en el desarrollo?

Revisa el código, echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.

Registro de cambios

1.0

  • Initial Release.
  • Tested until WordPress 4.2