There are a time for some our reader needed to print our content. So Implementing a Print Stylesheet on WordPress Theme is the best idea. We will show you how to do it. So you blog reader will be happy with your content and of course your blogs.
You need to open your header.php
and modified some parameter on it, let’s move on. After header.php
already opened. Find this line
< link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
And modified that code by added print
code like this one
< link rel="stylesheet" type="text/css" media="screen,print" href="<?php bloginfo( 'stylesheet_url' ); ?>" />