How enable .html in wordpress pagination
问题 I have to use wordpress with .html extension, and i am using plugin to make .html extension at end of URL, that is working fine, but my pagination becoming failed, it makes URL as /page-url.html/page/2 that goes on Page not found, how can I enable .html in pagination ? Thanks in advance. By the way, i did some work like add_filter('get_pagenum_link', function($url) { $html = strrpos( $url, '.html' ); if( $html > 0 ){ $base_link = substr( $url, 0, strrpos( $url, '/page' ) ); $page_number =