The Blog Module is using AJAX to load older posts. When you click on older entries button the Blog module is reloading instead of refreshing the entire page. This is the way that AJAX works.
The pagination links have the ?et_blog
parameter to avoid the pagination clashes with the main query. It has no impact on SEOSEO stands for in German Search engine optimization and is derived from the English: search engine optimization
SEO is about organic ranking optimization, not paid advertising. since the URL’s have the “canonical” URLA Uniform Resource Locator identifies and locates a resource, for example a website, via the access method to be used and the location of the resource in computer networks. set to the main page.
In some cases you may want to refresh the page to apply custom styles or in order to see URL of the next page.
To disable AJAX, place this code to the Divi
<script>
(function($) {
$(document).ready(function() {
$(".et_pb_module.et_pb_posts .pagination a, .et_pb_blog_grid .pagination a").click(function() {
window.location.href = $(this).attr('href');
return false;
});
});
})(jQuery);
</script>
If you need to disable AJAX on one page only you can place that code in the Code Module.
To disable AJAX for a particular Blog module, add a custom CSSCSS ( Cascading style sheets ) means “multi-level format templates” in German. CSS is a formatting language for HTML, SVG and XML documents. CSS is used to separate the content of a website from the design! There is more information here . class to Advanced settings tab of the module, for example:
disable_ajax

<script>
(function($) {
$(document).ready(function() {
$(".disable_ajax .pagination a").click(function() {
window.location.href = $(this).attr('href');
return false;
});
});
})(jQuery);
</script>