To add Previous and Next post links on single post pages in Oxygen Builder, enter below code in your Code Block.
<?php
if ( get_previous_post_link() ) {
previous_post_link();
}
?>
Without arrow
<?php previous_post_link('%link'); ?>
<?php
if ( get_next_post_link() ) {
next_post_link();
}
?>
Without arrow
<?php next_post_link('%link'); ?>