Tagdiv article needs an updated

Posted in: Newspaper
Post count: 108

The article ‘How to increase page loading speed‘ includes a deprecated function.

I quote:

Add the following code at the end of the functions.php, which is located in the theme folder. The code automatically compresses each thumbnail to 50%:

add_filter( ‘jpeg_quality’, create_function(”, ‘return 50;’ ) );

The create_function() function has been deprecated in PHP 7.2.0.

You can use snippets like below instead:

add_filter( 'jpeg_quality', function() {
return 50;
});

Post count: 108

I see someone has updated the article. You’re welcome

Post count: 27744

Thank you for the details.

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.