Hi guys,
I would like to include blog logo on the printed page.
I'm not sure how to do this with WP-Print plugin. The current version only include the blog title on printed page.
Here is the code to modify:
function add_print_this_header_text() {
$output = "";
if ( 1 == get_option('print_page_header_text') ) {
$output = '<div id="print_this_print_page_header">'."\n";
$output .= "<h1>".get_bloginfo('name')."</h1>\n";
$output .= "</div>\n";
}
return $output;
}
Thanks for your helps.