Thanks for the reply.
i found this:
<div class="navlinks">
<?php if($prev_link !== false) { ?><a href="<?php echo $prev_link; ?>" class="prev"><i class="fas fa-angle-left"></i> <?php _e('Previous'); ?></a><?php } ?>
<?php if($next_link !== false) { ?><a href="<?php echo $next_link; ?>" class="next"><i class="fas fa-angle-right"></i> <?php _e('Next'); ?></a><?php } ?>
</div>
I have replaced <?php _e('Previous'); ?> with <?php echo osc_item_title(); ?>but it shows me the title of the current ad. I would like to show instead of <Previous> the title of the previous ad and instead of <Next> the title of the next ad.
Which command should I enter instead of <?php _e('Previous'); ?> or <?php _e('Next'); ?> ?
Thanks in advance!!!