» Changelog
-
Version 2.20 (01-10-2007)
- NEW: Works For WordPress 2.3 Only
- NEW: Ability To Embed [print_link] Into Excerpt
- NEW: wp-print-css.css Now Controls The CSS Styles For The Printer Friendly Page
- NEW: Disclaimer/Copyright Text Option By Duane Craig
- NEW: Anchor Link To Comments By Reinventia
- NEW: Collapsable Comments By Reinventia
- NEW: Ability To Uninstall WP-Print
- FIXED: If There Is No Trailing Slash In Your Permalink, WP-Print Will Add It For You
-
Version 2.11 (01-06-2007)
- NEW: Putting [print_link] In Your Post/Page Content Will Display A Link To The Printable Post/Page
- FIXED: Worked With Polyglot Plugin, Fixed By zeridon
- FIXED: Wrong URL If Front Page Is A Static Page
-
Version 2.10 (01-02-2007)
- NEW: Added Fam Fam Fam's Printer Icon
- NEW: Works For WordPress 2.1 Only
- NEW: Localize WP-Print
- NEW: Ability To Configure The Text For Print Links Via 'WP-Admin -> Options -> Print'
- NEW: The Text For Print Links Can No Longer Be Pass To The Function print_link() or print_link_image()
- FIXED: MUltiple URL Type Fixed By (Virgil - http://virgil.gr)
- FIXED: 'Click Here To Print' Will Be Hidden When Printing By Joe (Ttech)
-
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 Need To Re-Generate The Permalink (WP-Admin -> Options -> Permalinks -> Update Permalink Structure)
-
Refer To Usage For Further Instructions
» Upgrade Instructions
From v1.0x To v2.20
-
Deactivate WP-Print Plugin
-
Open wp-content/plugins Folder
-
Put/Overwrite:
Folder: print
-
Delete these files if exists:
File: wp-print.php
File: wp-content/plugins/print.php
-
Activate WP-Print Plugin
-
You Need To Re-Generate The Permalink (WP-Admin -> Options -> Permalinks -> 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, page.php or theloop.php also.
-
Find:
<?php while (have_posts()) : the_post(); ?>
-
Add Anywhere Below It:
<?php if(function_exists('wp_print')) { print_link(); } ?>
If you DO NOT want the print link to appear in every post/page, DO NOT use the code above. Just type in [print_link] into the selected post/page content and it will embed the print link into that post/page only.
-
Go to 'WP-Admin -> Options -> Print' to configure the style of the print text link.