Skip to content

Instantly share code, notes, and snippets.

View xianyangwong's full-sized avatar

Xian Yang Wong xianyangwong

View GitHub Profile
<?php
// guest registration
function wc_register_guests( $order_id ) {
// get all the order data
$order = new WC_Order($order_id);
//get the user email from the order
$order_email = $order->billing_email;
@xianyangwong
xianyangwong / function.php
Created April 14, 2016 12:37
Change Wordpress login logo url
<?php
add_filter( 'login_headerurl', 'custom_loginlogo_url' );
function custom_loginlogo_url($url) {
return 'http://www.wpbeginner.com';
}
?>
@xianyangwong
xianyangwong / function.php
Last active April 14, 2016 12:38
Wordpress show breadcrumb
<?php
function the_breadcrumb () {
// Settings
$separator = '&#47;';
$id = 'breadcrumbs';
$class = 'breadcrumbs';
$home_title = 'Home';