A list of what I did recently.
- A repair of ML-21 (a kerosene heater).
- Update MariaDB to 10.2.11.
- PHP 7.2.0 was released. Congratulations!!
So, I updated PHP to 7.2.0.
In its php.ini, we have a change about syntax for an extension loaded automatically. Previously (extension=<ext>.so
and
extension='php_<ext>.dll
), currentlyextension=modulename
. About OPcache, it’szend_extension=opcache
. - I created child themes for my site, because I wanted to use
<meta name="theme-color" content="#rrggbb">
for my site on smartphones. He-he-he.About child theme, the codex told a little changes. Now, we need a function.php in the child theme folder because of loading a child theme style.php. Previously we use
@import
, but now they don’t recommend the method.