Skip to content

Instantly share code, notes, and snippets.

View aprea's full-sized avatar
💯

Chris Aprea aprea

💯
  • Sydney, Australia
View GitHub Profile
#!/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: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;
-- 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
@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;
}
@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:b1f74bfa5e16b41c421b
Created June 10, 2014 03:21
Advanced Excerpt - right align "read more" link
<?php
function custom_advanced_excerpt_read_more_link_template( $template ) {
/*
* The Advanced Excerpt plugin code looks like this
* apply_filters( 'advanced_excerpt_read_more_link_template', ' <a href="%1$s" class="read-more">%2$s</a>', get_permalink(), $read_more );
*/
return sprintf( '<p style="text-align: right;">%s</p>', $template );
}
add_filter( 'advanced_excerpt_read_more_link_template', 'custom_advanced_excerpt_read_more_link_template' );
@aprea
aprea / gist:620566678b76bbffe0a0
Created May 21, 2014 23:30
Preserve the 'blog_plugic' setting in wp_options when migrating your DB With WP Migrate DB Pro
<?php
function custom_preserved_options( $options ) {
$options[] = 'blog_public';
return $options;
}
add_filter( 'wpmdb_preserved_options', 'custom_preserved_options' );