Skip to content

Instantly share code, notes, and snippets.

View robertliwpe's full-sized avatar

Robert Li robertliwpe

  • WP Engine
  • Brisbane
View GitHub Profile
@robertliwpe
robertliwpe / bedrock-conversion.sh
Last active July 4, 2024 23:46 — forked from kennyeliason/makewpsuck.sh
Bedrock Conversion
#!/bin/bash
# Make sites into bedrock or normal WordPress
# Version 2.0
# Copyright (c) Kenny Eliason
set -a
source .env
set +a
@robertliwpe
robertliwpe / disable-woocommerce-admin.php
Created August 11, 2020 06:28 — forked from joshuatf/disable-woocommerce-admin.php
A plugin to disable the new WooCommerce Admin package in WooCommerce
<?php
/**
* Plugin Name: Disable WooCommerce Admin
* Description: This plugin disables the new WooCommerce Admin package in WooCommerce.
* Version: 1.0
*/
add_filter( 'woocommerce_admin_disabled', '__return_true' );