» Changelog
-
Version 2.50 (01-06-2009)
- NEW: Uses jQuery Framework
- NEW: [donotprint][/donotprint] ShortCode Will Not Be Displayed As Well When Using WP-Email (Refer To Usage Tab)
- NEW: Use _n() Instead Of __ngettext() And _n_noop() Instead Of __ngettext_noop()
- FIXED: Uses $_SERVER['PHP_SELF'] With plugin_basename(__FILE__) Instead Of Just $_SERVER['REQUEST_URI']
- FIXED: Nested ShortCode Issues
-
Version 2.40 (12-12-2008)
- NEW: Works For WordPress 2.7 Only
- NEW: Better Translation Using __ngetext() by Anna Ozeritskaya
- NEW: Right To Left Language Support by Kambiz R. Khojasteh
- NEW: Call print_textdomain() In print_init() by Kambiz R. Khojasteh
- NEW: Replace "text_direction" Option With $text_direction And language_attributes() by Kambiz R. Khojasteh
- NEW: Added "print-css-rtl.css" by Kambiz R. Khojasteh
- NEW: Page Title Is Now "Post Title -> Print" Instead Of "Print -> Post Title" by Kambiz R. Khojasteh
- NEW: Modified "print-css.css" To Hide "comments_controls" Element For Print by Kambiz R. Khojasteh
- FIXED: Footnotes Referencing Is Now "link1 [1]" Instead Of "[1] link1" by Kambiz R. Khojasteh
- FIXED: Remove chunk_split() As Browser Will Try To Wrap Word Boundaries Based On Page Width by Kambiz R. Khojasteh
- FIXED: Remove [print_link] ShortCode In Print Pages
-
Version 2.31 (16-07-2008)
- NEW: Works For WordPress 2.6
- NEW: Added donotprint ShortCode. See Usage Tab
- NEW: WP-Print Will Load print-posts.php And print-comments.php Templates From Your Theme Directory First If The Exist
- FIXED: Replace <center> With <div style="margin: 0px auto 0px auto;">
-
Version 2.30 (01-06-2008)
- NEW: Works For WordPress 2.5 Only
- NEW: WP-Print Will Load 'print-css.css' Inside Your Theme Directory If It Exists. If Not, It Will Just Load The Default 'print-css.css' By WP-Print
- NEW: Uses Shortcode API
- NEW: Added "Right To Left" And "Left To Right Text" Direction Option
- NEW: Option To Remove Videos From Post
- NEW: Duplicate Links Now Uses A Single Number And Printed Only Once By Constantinos Neophytou
- NEW: <IMG> And <A> Tag Now Matches Single Quotes By Constantinos Neophytou
- NEW: Uses /wp-print/ Folder Instead Of /print/
- NEW: Uses wp-print.php Instead Of print.php
- NEW: Changed wp-print.php To print-posts.php
- NEW: Changed wp-print-comments.php To print-comments.php
- NEW: Changed wp-print-css.css To print-css.css
- FIXED: Comment Type Not Translated
-
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: wp-print
-
Activate WP-Print Plugin
-
You Need To Re-Generate The Permalink (WP-Admin -> Settings -> Permalinks -> Save Changes)
-
Refer To Usage For Further Instructions
» Upgrade Instructions
From v2.0x To v2.50
-
Deactivate WP-Print Plugin
-
Open wp-content/plugins Folder
-
Put/Overwrite:
Folder: wp-print
-
Delete this folder if exists:
Folder: print
-
Activate WP-Print Plugin
-
You Need To Re-Generate The Permalink (WP-Admin -> Settings -> Permalinks -> Save Changes)
-
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.
The first value is the text for printing post.
The second value is the text for printing page.
Default: print_link('', '')
Alternatively, you can set the text in 'WP-Admin -> Settings -> Print'.
-
Go to 'WP-Admin -> Settings -> Print' to configure the style of the print text link.
Note
-
If you do not want to print a portion of your post's content, do the following:
[donotprint]Text within this tag will not be displayed when printing[/donotprint]
The text within [donotprint][/donotprint] will not be displayed when you are viewing a printer friendly version of a post or page.
However, it will still be displayed as normal on a normal post or page view.
Do note that if you are using WP-Email, any text within [donotprint][/donotprint] will not be emailed as well.
-
WP-Print will load 'print-css.css', 'print-posts.php' and 'print-comments.php' from your theme's directory if it exists.
- If it doesn't exists, it will just load the respective defalult file that comes with WP-Print.
- This will allow you to upgrade WP-Print without worrying about overwriting your printing styles or templates that you have created.