PluginProbe
WP-Print / 2.52
WP-Print v2.52
3.0.0 trunk 1.00 2.00 2.01 2.02 2.03 2.04 2.05 2.06 2.10 2.11 2.20 2.30 2.31 2.40 2.50 2.52 2.53 2.54 2.55 2.56 2.57 2.57.1 2.57.2 All 29 releases
wp-print / print.php

print.php in WP-Print 2.52, at print.php

35 lines 750 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * WordPress Plugin: WP-Print
4 * Copyright (c) 2012 Lester "GaMerZ" Chan
5 *
6 * File Written By:
7 * - Lester "GaMerZ" Chan
8 * - http://lesterchan.net
9 *
10 * File Information:
11 * - Process Printing Page
12 * - wp-content/plugins/wp-print/print.php
13 */
14
15
16 ### Variables
17 $links_text = '';
18
19 ### Actions
20 add_action('init', 'print_content');
21
22 ### Filters
23 add_filter('wp_title', 'print_pagetitle');
24 add_filter('comments_template', 'print_template_comments');
25
26 ### Print Options
27 $print_options = get_option('print_options');
28
29 ### Load Print Post/Page Template
30 if(file_exists(TEMPLATEPATH.'/print-posts.php')) {
31 include(TEMPLATEPATH.'/print-posts.php');
32 } else {
33 include(WP_PLUGIN_DIR.'/wp-print/print-posts.php');
34 }
35 ?>