Tags
ทำให้ WordPress สามารถ print ได้ง่ายๆ ด้วยการลง Plug-in ที่ชื่อ WP-Print
http://lesterchan.net/wordpress/readme/wp-print.html
แล้วเพิ่มโค้ดส่วนนี้
<?php if(function_exists(‘wp_print’)) { print_link(); } ?>
ลงในไฟล์ index.php ของ template เช่น
<?php get_header(); ?>
<!– Start of Two Column Fixed Body –>
<div id=”main”>
<div id=”right”>
<?php include(TEMPLATEPATH . ‘/showposts.php’);?>
<?php if(function_exists(‘wp_print’)) { print_link(); } ?>
</div><!– End of Column Left –>
<div id=”left”>
<?php get_sidebar(); ?>
</div><!– End of Column Right –>
<div style=”clear:both”></div>
<!– End of Two Column Fixed Body –>
</div>
<?php get_footer(); ?>