⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
This file contains 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
add_filter('gb_latest_deal_redirect', 'filter_homepage_redirect'); | |
function filter_homepage_redirect() { | |
$url = gb_get_latest_deal_link(); | |
if ( isset($_GET) ) { | |
$url = add_query_arg( $_GET ,$url ); | |
} | |
return $url; | |
} |
This file contains 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
add_action('on_biz_voucher_page','require_login_on_voucher_claim'); | |
function require_login_on_voucher_claim() { | |
if ( !gb_account_has_merchant() ) { | |
wp_redirect(gb_get_account_login_url()); | |
exit(); | |
} | |
} |
This file contains 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 | |
function pp() { | |
$msg = __v_build_message(func_get_args()); | |
echo '<pre style="white-space:pre-wrap; text-align: left; '. | |
'font: normal normal 11px/1.4 menlo, monaco, monospaced; '. | |
'background: white; color: black; padding: 5px;">'.$msg.'</pre>'; | |
} | |
function dp() { | |
$msg = __v_build_message(func_get_args(), 'var_dump'); | |
echo '<pre style="white-space:pre-wrap;; text-align: left; '. |
This file contains 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 | |
function filter_term_archive( $query ) { | |
if( is_tax( some_custom_post_type_tax_slug() ) ) { | |
$query->set( 'tax_query', array( | |
'relation' => 'AND', // Change to OR if we only want to filter one type. | |
array( | |
'taxonomy' => some_custom_tax_slug(), | |
'field' => 'slug', | |
'terms' => $array_of_terms |
This file contains 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 | |
function filter_term_archive( $query ) { | |
if( is_tax( some_custom_post_type_tax_slug() ) ) { | |
$query->set( 'tax_query', array( | |
'relation' => 'AND', // Change to OR if we only want to filter one type. | |
array( | |
'taxonomy' => some_custom_tax_slug(), | |
'field' => 'slug', | |
'terms' => $array_of_terms |
This file contains 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 | |
function filter_term_archive( $query ) { | |
if ( $query->is_tax('your_taxonomy') ) { | |
$query->set( 'tax_query', array( | |
'relation' => 'AND', // Change to OR if we only want to filter one type. | |
array( | |
'taxonomy' => some_custom_tax_slug(), | |
'field' => 'slug', | |
'terms' => $array_of_terms |
This file contains 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 | |
add_filter( 'purchase_record_array', 'affiliate_post'); | |
function affiliate_post( $record_array ) { | |
// Config | |
$post_url = "http://www.youdeal.co.za/wp-content/plugins/wp-affiliate-platform/api/post.php"; | |
$key = "ijweol383h538t34t9j"; | |
if ( isset($_COOKIE['ap_id'])) { |
This file contains 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
/** | |
* Add a file as a post attachment. | |
* | |
* @return null | |
*/ | |
public static function set_attachement( $post_id, $files ) { | |
if (!function_exists('wp_generate_attachment_metadata')){ | |
require_once(ABSPATH . 'wp-admin' . '/includes/image.php'); |
This file contains 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
add_action('init','filter_gb_controllers', 500); | |
function filter_gb_controllers() { | |
remove_all_filters('gb_checkout_account_registration_panes'); | |
add_filter('gb_checkout_account_registration_panes','remove_contact_info_pane'); | |
} | |
function remove_contact_info_pane( $panes ) { | |
//Make it a minimal registration since the checkout process will save the billing info. | |
unset($panes['contact_info']); | |
return $panes; | |
} |
OlderNewer