שיפור מהירות אתר הוא פרויקט גדול ומורכב בפני עצמו. בפוסט הבא נציג קובץ המאפשר לנו להעלות תמונות WEBP שהמשקל שלהן הוא ממש מיזערי ובכך להגביר את מהירות טעינת האתר.
ראשית יש לגשת ללוח הבקרה > עריכת תבנית
לאחר מכן לפתוח את לשונית functions.php
ולהדביק את הקובץ הבא
//** *Enable upload for webp image files.*/
function webp_upload_mimes($existing_mimes) {
$existing_mimes['webp'] = 'image/webp';
return $existing_mimes;
}
add_filter('mime_types', 'webp_upload_mimes');
//** * Enable preview / thumbnail for webp image files.*/
function webp_is_displayable($result, $path) {
if ($result === false) {
$displayable_image_types = array( IMAGETYPE_WEBP );
$info = @getimagesize( $path );
if (empty($info)) {
$result = false;
} elseif (!in_array($info[2], $displayable_image_types)) {
$result = false;
} else {
$result = true;
}
}
return $result;
}
add_filter('file_is_displayable_image', 'webp_is_displayable', 10, 2);
ניתן לבדוק שוב את מהירות האתר בכלי המדידה של גוגל לשמור את השינויים, ובהצלחה !