JoeHana
12/19/2013 - 3:55 PM

Custom Logo on Print View

Custom Logo on Print View

<?php

/**
 * Custom Logo on Print View
 */

add_filter('wpsight_do_print_logo_image', 'custom_do_print_logo_image', 100);

function custom_do_print_logo_image($logo) {
	$logo = 'http://url-to-image.jpg';
	return $logo;
}