Rooms General Divi change text of “older entries” Reply To: change text of “older entries”

#1085
Terry Hale
Keymaster
    @mizagorn
    Up
    1
    Down
    ::

    If you prefer JavaScript, you can put this into the “Integrations” tab:

    <script type="text/javascript">
    (function($) {
    $(document).ready(function() {
    var olderText = '<< Your Older Posts Text Here'; var newerText = 'Your Newer Posts Text Here >>';
    $('.pagination > .alignleft a').html( olderText );
    $('.pagination > .alignright a').html( newerText );
    });
    })(jQuery);
    </script>