WordPress Next Post Issue
-
Hi everyone,
My website is an anime directory where we have embed episodes of different shows.
On each episode page, there is a link to the next episode, and the previous one. as seen below.
https://animewolf.tv/anime/dragon-ball-gt-episode-16-dubbed/
I want to put an adfly link BEFORE the previous and next episode url, so instead of it showing
https://animewolf.tv/anime/dragon-ball-gt-episode-15-dubbed/
for previous episode it would show
https://adf.ly/527275432/animewolf.tv/anime/dragon-ball-gt-episode-15-dubbed/
and episode 17 would show
https://adf.ly/527275432/animewolf.tv/anime/dragon-ball-gt-episode-17-dubbed/
Here is the code that displays the players
<div class="right-side"> <?php if( $prev_link != NULL ) echo $prev_link . "<i title='Last Episode' class='playerleft tooltips fa fa-angle-double-left'> </i></a>";?> <a class="tooltips" title='View all <?php echo $name; ?> Episodes' href='<?php echo $series_link; ?>'><i class="allepisodes fa fa-sort-amount-asc"></i></a> <?php if( $next_link != NULL ) echo $next_link . "<i title='Next Episode'class='playerright tooltips fa fa-angle-double-right'> </i></a>"; ?> </div> <!-- End of right side -->
If anyone could help me, I’ll tip you through paypal because this is driving me nuts xd
Thanks!
- The topic ‘WordPress Next Post Issue’ is closed to new replies.