
instead of this:

Example: http://tvsourcemagazine.com/2013/01/bes ... a-edition/
Also, I'd like to move the page navigation in articles above the related posts/contect.
<?php gk_post_links(); ?>
<?php gk_post_fields(); ?>
function gk_post_links() {
global $tpl;
wp_link_pages( array(
'before' => '<div class="page-link">',
'after' => '</div>',
'next_or_number' => 'next',
'nextpagelink' => __('Next page'),
'previouspagelink' => __('Previous page'), )
);
}
.page-link {
overflow: hidden;
padding-bottom: 15px;
}
.page-link a {
-webkit-appearance: none!important;
background: #3299e2;
border: none;
-webkit-border-radius: 0px; /* For iOS browsers */
color: #fff!important;
cursor: pointer;
display: block;
float: left;
font-size: 14px;
font-weight: 400;
height: 42px;
line-height: 42px;
margin: 0 5px 2px 2px;
padding: 0 25px;
text-align: center;
-webkit-transition: all .1s ease-out;
-moz-transition: all .1s ease-out;
-o-transition: all .1s ease-out;
transition: all .1s ease-out;
}
.page-link a:last-child {
float: right;
}
.page-link a:hover {
background: #212121;
-webkit-border-radius: 0px;
color: #fff;
}