| 1 |
<?php |
| 2 |
/* |
| 3 |
+----------------------------------------------------------------+ |
| 4 |
| | |
| 5 |
| WordPress 2.7 Plugin: WP-Print 2.50 | |
| 6 |
| Copyright (c) 2008 Lester "GaMerZ" Chan | |
| 7 |
| | |
| 8 |
| File Written By: | |
| 9 |
| - Lester "GaMerZ" Chan | |
| 10 |
| - http://lesterchan.net | |
| 11 |
| | |
| 12 |
| File Information: | |
| 13 |
| - Process Printing Page | |
| 14 |
| - wp-content/plugins/wp-print/print.php | |
| 15 |
| | |
| 16 |
+----------------------------------------------------------------+ |
| 17 |
*/ |
| 18 |
|
| 19 |
|
| 20 |
### Variables |
| 21 |
$links_text = ''; |
| 22 |
|
| 23 |
### Actions |
| 24 |
add_action('init', 'print_content'); |
| 25 |
|
| 26 |
### Filters |
| 27 |
add_filter('wp_title', 'print_pagetitle'); |
| 28 |
add_filter('comments_template', 'print_template_comments'); |
| 29 |
|
| 30 |
### Print Options |
| 31 |
$print_options = get_option('print_options'); |
| 32 |
|
| 33 |
### Load Print Post/Page Template |
| 34 |
if(file_exists(TEMPLATEPATH.'/print-posts.php')) { |
| 35 |
include(TEMPLATEPATH.'/print-posts.php'); |
| 36 |
} else { |
| 37 |
include(WP_PLUGIN_DIR.'/wp-print/print-posts.php'); |
| 38 |
} |
| 39 |
?> |