Consider supporting my work by purchasing the course this tutorial is a part of i.e. VSCode Power User →
- Make sure your
Local by FlyWheel
WordPress install is a custom install
Consider supporting my work by purchasing the course this tutorial is a part of i.e. VSCode Power User →
Local by FlyWheel
WordPress install is a custom install**/*.min.js | |
**/*.build.js | |
**/node_modules/** | |
**/vendor/** | |
build | |
coverage | |
cypress | |
node_modules | |
vendor |
To support my open-source work, consider adding me on Patreon.
An easy to refer to document for regularly setting up macOS 10.14 Mojave.
The topic of recipe-based frequent fresh reinstalls of macOS is a controversial issue. Some people are against reinstalling macOS, citing that they have never had an issue with Apple provided upgrade installs.
image: php:7.2 | |
pipelines: | |
branches: | |
# '{develop, staging}': | |
develop: | |
- step: | |
caches: | |
- composer | |
script: | |
# Installing first the libraries necessary to configure and install gd |
if ( $http_user_agent ~* "(Facebot|facebookexternalhit/1.1)" ) { | |
rewrite ^/(.*)$ http://url.com/$1 permanent; | |
break; | |
} |
Verifying my Blockstack ID is secured with the address 1P9cnX2TSUM9yeaPH1gea5GiU6RLBeCuws https://explorer.blockstack.org/address/1P9cnX2TSUM9yeaPH1gea5GiU6RLBeCuws |
# WordPress .htaccess file | |
# Disable directory views | |
Options -Indexes | |
<IfModule dir_module> | |
DirectoryIndex disabled | |
DirectoryIndex index.php | |
</IfModule> | |
Verifying that "166r8i2AoZXQuS6kiBNPtQWT57tcAX8ymx.id" is my Blockstack ID. https://onename.com/166r8i2AoZXQuS6kiBNPtQWT57tcAX8ymx |
<?php | |
//* Do NOT include the opening php tag | |
//* Modify Home breadcrumb link. | |
add_filter ( 'genesis_home_crumb', 'sp_breadcrumb_home_link' ); // Genesis >= 1.5 | |
add_filter ( 'genesis_breadcrumb_homelink', 'sp_breadcrumb_home_link' ); // Genesis =< 1.4.1 | |
function sp_breadcrumb_home_link( $crumb ) { | |
return preg_replace('/href="[^"]*"/', 'href="http://example.com/home"', $crumb); | |
} |