We are using MySQL 5.7 in our development environment. This is the version that is included in All-Inkl hosting and in many other managed hosting packages.
- Install and link brew package
brew install mysql@5.7
brew link --force mysql@5.7| <script> | |
| function loadScript(url, callback) { | |
| let selector = 'script[src*="' + url + '"]'; | |
| if (!document.querySelector(selector)) { | |
| let script = document.createElement("script"); | |
| script.type = 'text/javascript'; | |
| if (script.readyState) { //IE | |
| script.onreadystatechange = function () { | |
| if (script.readyState === 'loaded' || |
| <?php | |
| /* | |
| * Resize images dynamically using wp built in functions | |
| * Victor Teixeira | |
| * | |
| * php 5.2+ | |
| * | |
| * Exemplo de uso: | |
| * | |
| * <?php |