|
Server : Apache System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64 User : p141464 ( 418825) PHP Version : 7.4.33.12 Disable Function : NONE Directory : /home/www/p141464/html/wordpress-old/wp-content/plugins/wp-print/ |
Upload File : |
<?php
/*
* WordPress Plugin: WP-Print
* Copyright (c) 2012 Lester "GaMerZ" Chan
*
* File Written By:
* - Lester "GaMerZ" Chan
* - http://lesterchan.net
*
* File Information:
* - Process Printing Page
* - wp-content/plugins/wp-print/print.php
*/
### Variables
$links_text = '';
### Actions
add_action('init', 'print_content');
### Filters
add_filter('wp_title', 'print_pagetitle');
add_filter('comments_template', 'print_template_comments');
### Print Options
$print_options = get_option('print_options');
### Load Print Post/Page Template
if(file_exists(TEMPLATEPATH.'/print-posts.php')) {
include(TEMPLATEPATH.'/print-posts.php');
} else {
include(WP_PLUGIN_DIR.'/wp-print/print-posts.php');
}
?>