First let's make sure HB is updated. Open up terminal for the following steps.
$ brew update
| <?php | |
| declare(strict_types=1); | |
| /** | |
| * Create an override function, as to bypass Freemius in stupid plugins. | |
| * @wordpress-muplugin | |
| * Plugin Name: Freemius Stub | |
| * Description: Global override for Freemius' "loader". | |
| * Version: 1.1.0 |
| <?php | |
| /** | |
| * Plugin Name: Autoload Plugins | |
| * Plugin URI: https://gist.github.com/thefrosty/8303566 | |
| * Description: Autoload non-MU plugins that live in the `wp-content/plugins` directory. This allows auto-updates to | |
| * work but have to plugin act like an must-use plugin. | |
| * Version: 0.2.1 | |
| * Author: Austin Passy | |
| * Author URI: http://austin.passy.co/ | |
| */ |
| <?php | |
| declare(strict_types=1); | |
| /** | |
| * Get Post By Slug | |
| * @wordpress-plugin | |
| * Plugin Name: Not Found Posts by Slug to 404 | |
| * Description: Validate REST API requests by slug, and set proper response 404 status when not found. | |
| * Author: Austin Passy |
| <?php | |
| declare(strict_types=1); | |
| /** | |
| * Remove global headers added by The Events Calendar. | |
| * @wordpress-muplugin | |
| * Plugin Name: TEC Remove Headers | |
| * Description: Remove global headers added by The Events Calendar. | |
| * Version: 1.0.0 |
| name: "Deploy to Linode" | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| tag: |
| /** global jQuery */ | |
| (function ($) { | |
| 'use strict' | |
| const requirements = { | |
| $title: $('#title') | |
| } | |
| /** | |
| * Initiate. |
| <?php declare(strict_types=1); | |
| /** | |
| * Plugin Name: Demo App Passwords Client | |
| */ | |
| namespace TimothyBJacobs\AppPasswordsClientDemo; | |
| const META_KEY = '_app_passwords_client_demo_creds'; | |
| const PAGE = 'app-passwords-demo'; |
| add_shortcode( 'md5', 'md5_email_hash' ); | |
| function md5_email_hash( $atts ) { | |
| extract( shortcode_atts( array( | |
| 'hash' => '', | |
| ), $atts ) ); | |
| $hash = ( isset( $_GET['email'] ) && !empty( $_GET['email'] ) ) ? $_GET['email'] : $hash; | |
| $hash = is_email( $hash ) ? sanitize_email( strtolower( $hash ) ) : trim( $hash ); |
First let's make sure HB is updated. Open up terminal for the following steps.
$ brew update
| <?php | |
| /** | |
| * WpRestApiCache Controller. | |
| * This file extend the wp-rest-api-cache plugin that allows filtering of | |
| * cache depending on conditions met. | |
| * | |
| * @package BeachbodyOnDemand\WpRestApiCache | |
| */ | |
| namespace BeachbodyOnDemand\WpRestApiCache; |