Изображение готовится
Описание
Не просто минифицируйте и объединяйте файлы CSS/JavaScript, в результате чего получаются большие, раздутые и медленно загружающиеся страницы: Сначала удалите «жир» и получите более быстрый сайт 🙂
Более быстрая загрузка страницы = более счастливые посетители = больше конверсий = больше доходов
There are often times when you are using a theme and a number of plugins which are enabled and run on the same page. However, you don’t need to use all of them and to improve the speed of your website and make the HTML source code cleaner (convenient for debugging purposes), it’s better to prevent those styles and scripts from loading.
For instance, you might use a plugin that generates contact forms and it loads its assets (.CSS and .JS files) in every page of your website instead of doing it only in the /contact page (if that’s the only place where you need it).
«Asset CleanUp» сканирует вашу страницу и обнаруживает все загруженные ресурсы. Все, что вам нужно сделать при редактировании страницы / сообщения, это просто выбрать CSS / JS, которые не нужно загружать, таким образом уменьшая раздувание.
Плагин лучше всего работает в сочетании с плагином кэширования (например, WP Rocket, WP Fastest Cache, W3 Total Cache), хостинговой компанией, предлагающей пакеты с кэшированием на уровне сервера (например, WP Engine, Kinsta), или сервисом типа Cloudflare с включенным кэшированием страниц.
**К ОСНОВНЫМ ПРЕИМУЩЕСТВАМ ПЛАГИНА ОТНОСЯТСЯ**
• Decreases the number of HTTP requests loaded and eliminate render-blocking resources (important for faster page load) by unloading useless CSS/JS
• Предварительная загрузка файлов CSS/JS, локальных шрифтов и шрифтов Google для указания браузеру загрузить выбранные активы как можно скорее
• Минификация файлов CSS (включая встроенный код в тегах STYLE)
• Минификация файлов JavaScript (включая встроенный код в тегах SCRIPT)
• Combine remaining loaded CSS & JavaScript files
• Inline CSS Files (automatically & by specifying the path to the stylesheets)
• Defer combined JavaScript files by applying «defer» attribute to the SCRIPT tags
• Site-wide removal for Emojis, Dashicons for guest users and Comment Reply if they are not used
• Disable RSS Feeds
• Уменьшает HTML-код фактической страницы (это еще лучше, если включено сжатие GZIP)
• Makes source code easier to scan in case you’re a developer and want to search for something
• Remove possible conflicts between plugins/theme (e.g. 2 JavaScript files that are loading from different plugins and they interfere one with another)
• Better performance score if you test your URL on websites such as GTmetrix, PageSpeed Insights, Pingdom Website Speed Test
• Google будет больше любить ваш сайт, так как он будет быстрее, а быстрая загрузка страниц сегодня является фактором поискового ранжирования
• Файлы журнала доступа к вашему серверу (например, Apache) будут проще сканироваться и займут меньше места на вашем сервере
**Оптимизация / удаление шрифтов Google**
• Combine all Google Font requests into fewer (usually one) requests, saving one round trip to the server for each additional font requested
• Choose between three methods of delivery: Render-blocking, Asynchronous via Web Font Loader (webfont.js) or Asynchronous by preloading the CSS stylesheet
• Возможность предварительной загрузки файлов шрифтов Google с сайта fonts.gstatic.com (напр., заканчивающихся на .woff2)
• Apply «font-display» CSS property to all loaded Google Font requests
• Enable preconnect resource hint for fonts.gstatic.com in case you use Google Fonts; don’t let the browser wait until it fetches the CSS for loading the font files before it begins DNS/TCP/TLS
• Remove all Google Font requests including link/font preloads, @import/@font-face from CSS files & STYLE tags, resource hints
**Оптимизация локальных шрифтов**
• Предварительная загрузка локальных файлов шрифтов ( .woff, .woff2, .ttf и т.д.)
• Apply «font-display:» CSS property to @font-face from existing to LINK / STYLE tags to improve the PageSpeed score for «Ensure text remains visible during webfont load»
**Critical CSS**
• You can add already generated critical CSS (e.g. via tools such as Advanced Critical CSS Generator customly for the homepage, posts, pages, taxonomy pages (e.g. category), archive pages (e.g. date, author), search, 404 not found
• The critical CSS can be added within the Dashboard as well as via code / Read More
**Remove useless links, meta tags and HTML comments within the HEAD and BODY (footer) tags of the website**
• Really Simple Discovery (RSD) link tag
• REST API link tag
• Pages/Posts Shortlink tag
• Метатег версии WordPress (также хорош по соображениям безопасности)
• All «generator» meta tags (also good for security reasons)
• RSS Feed Link Tags (usually they are not needed if your website is not used for blogging purposes)
• oEmbeds, if you do not need to embed videos (e.g. YouTube), tweets and audios
• Valid HTML Comments (exceptions from stripping ca...
Более быстрая загрузка страницы = более счастливые посетители = больше конверсий = больше доходов
There are often times when you are using a theme and a number of plugins which are enabled and run on the same page. However, you don’t need to use all of them and to improve the speed of your website and make the HTML source code cleaner (convenient for debugging purposes), it’s better to prevent those styles and scripts from loading.
For instance, you might use a plugin that generates contact forms and it loads its assets (.CSS and .JS files) in every page of your website instead of doing it only in the /contact page (if that’s the only place where you need it).
«Asset CleanUp» сканирует вашу страницу и обнаруживает все загруженные ресурсы. Все, что вам нужно сделать при редактировании страницы / сообщения, это просто выбрать CSS / JS, которые не нужно загружать, таким образом уменьшая раздувание.
Плагин лучше всего работает в сочетании с плагином кэширования (например, WP Rocket, WP Fastest Cache, W3 Total Cache), хостинговой компанией, предлагающей пакеты с кэшированием на уровне сервера (например, WP Engine, Kinsta), или сервисом типа Cloudflare с включенным кэшированием страниц.
**К ОСНОВНЫМ ПРЕИМУЩЕСТВАМ ПЛАГИНА ОТНОСЯТСЯ**
• Decreases the number of HTTP requests loaded and eliminate render-blocking resources (important for faster page load) by unloading useless CSS/JS
• Предварительная загрузка файлов CSS/JS, локальных шрифтов и шрифтов Google для указания браузеру загрузить выбранные активы как можно скорее
• Минификация файлов CSS (включая встроенный код в тегах STYLE)
• Минификация файлов JavaScript (включая встроенный код в тегах SCRIPT)
• Combine remaining loaded CSS & JavaScript files
• Inline CSS Files (automatically & by specifying the path to the stylesheets)
• Defer combined JavaScript files by applying «defer» attribute to the SCRIPT tags
• Site-wide removal for Emojis, Dashicons for guest users and Comment Reply if they are not used
• Disable RSS Feeds
• Уменьшает HTML-код фактической страницы (это еще лучше, если включено сжатие GZIP)
• Makes source code easier to scan in case you’re a developer and want to search for something
• Remove possible conflicts between plugins/theme (e.g. 2 JavaScript files that are loading from different plugins and they interfere one with another)
• Better performance score if you test your URL on websites such as GTmetrix, PageSpeed Insights, Pingdom Website Speed Test
• Google будет больше любить ваш сайт, так как он будет быстрее, а быстрая загрузка страниц сегодня является фактором поискового ранжирования
• Файлы журнала доступа к вашему серверу (например, Apache) будут проще сканироваться и займут меньше места на вашем сервере
**Оптимизация / удаление шрифтов Google**
• Combine all Google Font requests into fewer (usually one) requests, saving one round trip to the server for each additional font requested
• Choose between three methods of delivery: Render-blocking, Asynchronous via Web Font Loader (webfont.js) or Asynchronous by preloading the CSS stylesheet
• Возможность предварительной загрузки файлов шрифтов Google с сайта fonts.gstatic.com (напр., заканчивающихся на .woff2)
• Apply «font-display» CSS property to all loaded Google Font requests
• Enable preconnect resource hint for fonts.gstatic.com in case you use Google Fonts; don’t let the browser wait until it fetches the CSS for loading the font files before it begins DNS/TCP/TLS
• Remove all Google Font requests including link/font preloads, @import/@font-face from CSS files & STYLE tags, resource hints
**Оптимизация локальных шрифтов**
• Предварительная загрузка локальных файлов шрифтов ( .woff, .woff2, .ttf и т.д.)
• Apply «font-display:» CSS property to @font-face from existing to LINK / STYLE tags to improve the PageSpeed score for «Ensure text remains visible during webfont load»
**Critical CSS**
• You can add already generated critical CSS (e.g. via tools such as Advanced Critical CSS Generator customly for the homepage, posts, pages, taxonomy pages (e.g. category), archive pages (e.g. date, author), search, 404 not found
• The critical CSS can be added within the Dashboard as well as via code / Read More
**Remove useless links, meta tags and HTML comments within the HEAD and BODY (footer) tags of the website**
• Really Simple Discovery (RSD) link tag
• REST API link tag
• Pages/Posts Shortlink tag
• Метатег версии WordPress (также хорош по соображениям безопасности)
• All «generator» meta tags (also good for security reasons)
• RSS Feed Link Tags (usually they are not needed if your website is not used for blogging purposes)
• oEmbeds, if you do not need to embed videos (e.g. YouTube), tweets and audios
• Valid HTML Comments (exceptions from stripping ca...
Похожие товары
Смотреть все
Хит продаж
WordPress
Хит продаж
WordPress