Skip to content
Snippets Groups Projects
Commit 6da15198 authored by Erick Hitter's avatar Erick Hitter
Browse files

Initial commit of version 0.4.4.1 from WP.org repository.

parents
Branches
Tags
No related merge requests found
<!DOCTYPE html>
<html>
<head>
<title><?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); ?></title>
<link rel="canonical" href="<?php the_permalink(); ?>" />
<meta name="robots" content="noindex" />
</head>
<body <?php body_class(); ?>>
<?php
if( have_posts() ):
while( have_posts() ):
the_post();
?>
<div <?php post_class(); ?>>
<h1><?php the_title(); ?></h1>
<p>by <?php the_author(); ?> | <?php the_time( 'F j, Y g:i a' ); ?></p>
<?php
if( is_attachment() && wp_attachment_is_image() )
echo '<p>' . wp_get_attachment_image( $post->ID, 'large' ) . '</p>';
the_content();
?>
<?php
if( function_exists( 'wpf_the_page_numbers' ) )
wpf_the_page_numbers( false, '<p class="page_numbers">Page ', ' of ', '</p><!-- .page_numbers -->' );
?>
<p class="wpf-source"><strong>Source URL:</strong> <?php the_permalink(); ?></p>
<hr class="wpf-divider" />
</div>
<?php
endwhile;
endif;
?>
<p class="copyright">Copyright &copy;<?php echo date( 'Y' ); ?> <strong><?php bloginfo( 'name' ); ?></strong> unless otherwise noted.</p>
</body>
</html>
\ No newline at end of file
=== WP Print Friendly ===
Contributors: ethitter, thinkoomph
Donate link: http://www.thinkoomph.com/plugins-modules/wp-print-friendly/
Tags: print, template, printer, printable
Requires at least: 3.1
Tested up to: 3.4
Stable tag: 0.4.4.1
Extends WordPress' template system to support printer-friendly templates. Works with permalink structures to support nice URLs.
== Description ==
Extends WordPress' template system to support printer-friendly templates for posts, pages, and custom post types. Uses WP standard template naming to support templates on a post-type basis. Supports printing paged posts on single page. Adds nice URLs for printer-friendly pages.
**IMPORTANT**: There are certain plugins that may interfere with this plugin's functionality. See the **FAQ** for more information.
== Installation ==
1. Upload wp-print-friendly.php to /wp-content/plugins/.
2. Activate plugin through the WordPress Plugins menu.
3. Navigate to Options > Permalinks and click *Save Changes* to update navigation.
== Frequently Asked Questions ==
= Print links don't work =
First, navigate to Options > Permalinks in WP Admin, click *Save Changes*, and try again.
If clicking on a print link takes you back to the post or page where the link appeared, see the **Known Plugin Conflicts** item below.
If, after reviewing the remaining FAQ, you are still experiencing problems, visit [http://www.thinkoomph.com/plugins-modules/wp-print-friendly/](http://www.thinkoomph.com/plugins-modules/wp-print-friendly/) and leave a comment detailing the problem.
= How should I name print templates? =
Print templates should be prefixed with *wpf* and follow WordPress template conventions from there. To use one template for all contexts unless otherwise specified, name your template *wpf.php.*
For both built-in and custom post types, *wpf-[post type name].php* will be used for that post type. To use a template for a single post type object, name your template *wpf-[post type name]-[slug].php*.
For custom taxonomies, follow the naming conventions for post types.
Similarly, *wpf-home.php* will load that template for the front page of your site.
The plugin also includes a default template that may suit many needs.
= How do I add a print link to my templates? =
The function `wpf_the_print_link` will add a link to the print-friendly version of whatever page it appears on. This function accepts the following arguments:
* **$page_link**: Set to true to add a link to the current page in a paged post in addition a to a link for the entire post.
* **$link_text**: Set to text that should appear for the print link. Defaults to *Print this post*.
* **$class**: Specifies the CSS class for the print link. Defaults to *print_link*.
* **$page_link_separator**: If $page_link is true, specifies what separator will appear between the print link for the entire post and the print link for the current page of the post.
* **$page_link_text**: If $page_link is true, specifies what text will appear for the print link for the current page. Defaults to *Print this page*.
* **$link_target**: If set to "new", print links will open in a new window.
= Known Plugin Conflicts =
This plugin is known to conflict with certain plugins, many pertaining to SEO and permalinks. Conflicting plugins include, but are not limited to, the following:
* **WordPress SEO by Yoast:** This plugin's `Permalink` options, particularly *Redirect attachment URL's to parent post URL* and *Redirect ugly URL's to clean permalinks. (Not recommended in many cases!)*, interfere with WP Print Friendly's ability to display print templates. Both must be disabled, and the site's rewrite rules regenerated (by visiting Options > Permalinks and clicking *Save Changes*), for WP Print Friendly to function.
== Changelog ==
= 0.4.4.1 =
* Remove unnecessary query_var filter.
= 0.4.4 =
* Full support for child themes.
* Expand template choosing to fully support WordPress template hierarchy as described at [http://codex.wordpress.org/Template_Hierarchy](http://codex.wordpress.org/Template_Hierarchy).
* Simplify rewrite rules creation.
= 0.4.3.3 =
* Correct error that would display wrong page's content when printing a single page of a paged post.
* Correct error in link generation for page-specific print links.
* Increase compatibility with View All Post's Pages plugin.
= 0.4.3.2 =
* Resolve PHP notice in options retrieval.
* Add compatibility with View All Post's Pages plugin (release forthcoming).
= 0.4.3.1 =
* Fix bug in options retrieval that caused print links to be added to default post types if no post types were selected.
* Resolve PHP notice when using default permalinks.
= 0.4.3 =
* Fix bug in page number function.
* Rewrite endnote link processing, including a refined regex pattern.
* Introduce class property for print slug.
* Correct minor bug in print link generation.
* Add canonical link attribute and nofollow declaration to default template.
= 0.4.2.2 =
* Correct generation of custom post type rewrite rules.
= 0.4.2.1 =
* Version 0.4.2 omitted the default template.
= 0.4.2 =
* Correct page rewrite rules to accomodate situations necessitating verbose rules, such as when the permalink structure starts with `%postname%`. Thanks to Wes Herzik at ikonic for discovering and reporting this issue.
= 0.4.1 =
* Fix bug that displayed post links automatically on the wrong post types.
= 0.4 =
* Child pages now fully supported.
* Generates and registers rewrite rules more efficiently.
* Rewrite setting for all post types and taxonomies are now considered when adding print support.
* Add option to disable endnotes representing links found in content.
* Move copyright and other static elements from content filters to default template.
* Add function to display page numbers when printing single page of post.
* Options page is now fully translation-ready.
* Notices are translation-ready.
* Correct various other bugs, including many related to non-standard permalink structures, custom post types, and custom taxonomies.
= 0.3.2 =
* Add option to open print-friendly views in a new window.
= 0.3.1 =
* Correct PHP error in `is_print()`.
= 0.3 =
* Initial version.
== Upgrade Notice ==
= 0.4.4.1 =
Removes unnecessary query_var filter.
= 0.4.4 =
Adds full child theme and template hierarchy support for template selection. Simplifies rewrite rules.
= 0.4.3.3 =
Corrects a few errors related to paged posts and further enhances compatibility with View All Post's Pages plugin.
= 0.4.3.2 =
Fixes a minor bug in plugin's options retrieval and enhances compatibility with forthcoming View All Post's Pages plugin.
= 0.4.3.1 =
Fixes a bug in plugin's options retrieval that caused print links to be added to default post types if no post types were chosen. Also resolves a PHP notice encountered when using default permalinks.
= 0.4.3 =
Fixes various bugs in the print link, page numbering, and endnote generating functions. Also introduces a class variable for permalink component. Default template is updated to be more SEO friendly, now containing both canonical URL and nofollow declarations.
= 0.4.2.2 =
Rewrite rules for custom post types are now generated correctly.
= 0.4.2.1 =
Version 0.4.2 omitted the default template.
= 0.4.2 =
This release expands the plugin's page rewrite rules to accomodate permalink structures that necessitate verbose rules, such as when the structure begins with `%postname%`.
= 0.4.1 =
This release fixes bug that displayed post links automatically on the wrong post types.
= 0.4 =
This release addresses numerous bugs reported by the community, including print templates for child pages. All admin text, save the plugin's name, are now ready for translation. Templates are now completely customizable, and new template functions are included.
\ No newline at end of file
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment