Last modified 6 years ago
WP-Print Usage Instructions
Open wp-content/themes/<YOUR THEME NAME>/index.php
Find:
<?php while (have_posts()) : the_post(); ?>
Add Anywhere Below It:
<?php if(function_exists('wp_print')) { print_link(); } ?>
Note:
- The first value you pass in is the text for printing post.
- The second value is the text for printing page.
- Default: print_link('Print This Post', 'Print This Page')
- If you want to use an image/icon instead, replace print_link() with print_link_image()
