Search Divi Blog Extras Documentation

Search for answers or browse our knowledge base.

Table of Contents
< All Topics
Print

Change pagination URL to numbers

*This is not a standard feature of the Divi Blog Extras plugin. This customization support may not be available.

Add the code to Theme panel in integration tab.

<script> (function($) { $(document).ready(function() { $(".et_pb_module.et_pb_blog_extras .el-blog-pagination ul.page-numbers li a").click(function() { var new_url = $(this).attr('href').replace("?el_dbe_page", ""); window.location.href = new_url; return false; }); }); })(jQuery); </script>