Skip to content

Instantly share code, notes, and snippets.

View aprea's full-sized avatar
💯

Chris Aprea aprea

💯
  • Sydney, Australia
View GitHub Profile
-- delete any usermeta specific to the other subsites
delete from wp_usermeta where meta_key regexp '^wp_([0-9]+)_';
-- duplicate the wp_usermeta structure in a working data table,
-- but add a unique index for filtering out duplicates
create table _fix_usermeta like wp_usermeta;
alter table _fix_usermeta add unique(user_id, meta_key);
-- copy the site-specific usermeta, keeping only the last of each duplicate
insert into _fix_usermeta
#!/bin/sh
WCPAY_BRANCH=$1
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# docker-compose.override.yml
version: '3'
services:
wordpress:
volumes:
- ../woocommerce-subscriptions:/var/www/html/wp-content/plugins/woocommerce-subscriptions
- ../woocommerce-subscriptions-core:/var/www/html/wp-content/plugins/woocommerce-subscriptions-core
- ../woocommerce-payments-dev-tools:/var/www/html/wp-content/plugins/woocommerce-payments-dev-tools
@aprea
aprea / gist:4209748
Created December 4, 2012 22:44
Get all DB tables from a WordPress database installation
function reset_array( &$value, $key ) {
$value = $value[0];
}
function get_tables() {
global $wpdb;
$results = $wpdb->get_results( 'show tables from ' . DB_NAME, ARRAY_N );
array_walk( $results, 'reset_array' );
return $results;
}
@aprea
aprea / gist:4029130
Created November 7, 2012 02:02
Clean WordPress logged in message
<?php printf( 'User is%s logged in.', ( is_user_logged_in() ? '' : ' not' ) ); ?>
@aprea
aprea / gist:82b5cf043ade04f55463
Created June 24, 2014 05:46
Only add the "add more" link when required
<?php
function ca_only_add_more_when_required( $default, $text, $options ) {
$text = strip_tags( $text );
if ( 'words' === $options['length_type'] ) {
$excerpt_length = str_word_count( $text );
} else {
$excerpt_length = strlen( $text );
}
@aprea
aprea / gist:52381efc380ebbdf85da
Created April 23, 2015 00:13
WordPress oEmbed Tests
YouTube Video
https://www.youtube.com/watch?v=bP7vggHJLVM
YouTube Playlist
https://www.youtube.com/playlist?list=PL75C7F02E0C4EA3E0
Twitter Tweet
https://twitter.com/google/status/590225864421482498
blip.tv Video
@aprea
aprea / gist:676166688917322dfe80
Created November 11, 2014 05:13
the_archive_title()
the_archive_title( '<h1 class="page-title">', '</h1>' );
@aprea
aprea / gist:eae346874f39bd8d450d
Last active August 29, 2015 14:08
SQL in PHP
<?php
/**
* Get the table data
*
* @return Array
*/
private function table_data() {
global $wpdb;
@aprea
aprea / gist:886a5f1d6ec094e996fc
Last active August 29, 2015 14:02
Disable excerpt filtering for a specific post category
<?php
function disable_excerpt_filtering() {
// disable excerpt filtering for the "markup" post category
if ( has_category( 'markup' ) ) {
return true;
}
return false;
}