This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: UTF8mb4-convert | |
| Version: 1.0 | |
| */ | |
| function update_db_to_utf8mb4() { | |
| if ( ! isset( $_GET['update-utf8mb4'] ) ) { | |
| return; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Make sites into bedrock or normal WordPress | |
| # Version 2.0 | |
| # Copyright (c) Kenny Eliason | |
| set -a | |
| source .env | |
| set +a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| background-color: #FFF; | |
| color: #333; | |
| font: 15px Helvetica, arial, freesans, clean, sans-serif; | |
| word-wrap: break-word; | |
| line-height: 1.7; | |
| padding: 0 20px 20px 20px; | |
| width: 722px; | |
| -webkit-font-smoothing: antialiased; | |
| } |