» Index
Plugin Information
Author
» Lester 'GaMerZ' Chan
EMail:
»
Website:
» http://www.lesterchan.net/
Demo:
» http://www.lesterchan.net/wordpress/2006/07/05/donations/print/
Documentation:
» http://dev.wp-plugins.org/wiki/wp-print
Development:
» http://dev.wp-plugins.org/browser/wp-print/
Support Forums:
» http://forums.lesterchan.net/viewforum.php?f=11
Updated:
» 1st October 2006
Changelog
-
Version 2.06 (01-10-2006)
- NEW: Used Default Date/Time Format Under WordPress Options
- NEW: Added robots: noindex To Printer Friendly Pages
- NEW: Added rel="nofollow" To All Links Generated By WP-Print
- FIXED: <abbr> Tag Mixed Up With <a>
- FIXED: PHP5 Compatibility Issue
- FIXED: Long URL Will Not Break Into More Than 1 Line
-
Version 2.05 (01-06-2006)
- NEW: Added Print Options In WP Administration Panel Under 'Options -> Print'
- NEW: Print Administration Panel And The Code That WP-Print Generated Is XHTML 1.0 Transitional
- FIXED: Comment's Content Formatting
-
Version 2.04 (01-04-2006)
- NEW: Able To Print Comments Together With Post Using $can_print_comments In wp-print.php
- NEW: Moved wp-print.php To Plugin Folder
- FIXED: Removed Link From Post Comment Count And Post Category
-
Version 2.03 (01-03-2006)
- NEW: Added Print Image With print_link_image()
- NEW: Automatically Break To Next Line If Link Contains More Than 100 Chars
- FIXED: Comment Numbers Showing In Password Protected Post
-
Version 2.02 (01-02-2006)
- FIXED: Able To View Password Protected Blog
-
Version 2.01 (01-01-2006)
- NEW: Compatible With WordPress 2.0
- NEW: Automatically Detect Whether You Are Using Nice Permalink
- NEW: Automated Permalink
- NEW: Now You Only Need To Insert 1 Line Into Your index.php Of Your Theme
- NEW: GPL License Added
- FIXED: Links Not Displaying Properly When Printing More Than 1 Post On A Single Page
-
Version 2.00a (17-11-2005)
- NEW: Permlink For The Page Feature
-
Version 2.00 (10-11-2005)
- NEW: Print Out A Summary Of URLS In The Post At The Bottom Of The Page
» Installation Instructions
-
Open wp-content/plugins Folder
-
Put:
Folder: print
-
Activate WP-Print Plugin
-
You MAY Need To Re-Generate The Permalink (Options -> Permalinks Options -> Update Permalink Structure)
-
Refer To Usage For Further Instructions
» Upgrade Instructions
From v2.0x To v2.06
-
Deactivate WP-Print Plugin
-
Open wp-content/plugins Folder
-
Overwrite:
Folder: print
-
Activate WP-Print Plugin
From v1.0x To v2.06
-
Deactivate WP-Print Plugin
-
Open wp-content/plugins Folder
-
Delete:
File: print.php
-
Put:
Folder: print
-
Open Root WordPress Folder
-
Delete:
File: wp-print.php
-
Activate WP-Print Plugin
-
You MAY Need To Re-Generate The Permalink (Options -> Permalinks Options -> Update Permalink Structure)
-
Refer To Usage For Further Instructions
» Usage Instructions
General Usage
-
Open wp-content/themes/<YOUR THEME NAME>/index.php
You may place it in single.php, post.php or page.php also.
-
Find:
<?php while (have_posts()) : the_post(); ?>
-
Add Anywhere Below It:
<?php if(function_exists('wp_print')) { print_link(); } ?>
The first value you pass in is the text for printing post. The second value is the text for printing page.
Default: print_link('Print This Post', 'Print This Page')
If you want to use an image/icon instead, replace print_link(); with print_link_image();