How can I remove page slug for all pagings?
Add this code to your functions.php and please re-save your permanent link page and do not forget 301 redirects add_action( ‘init’, ‘remove_page’ ); function remove_page(){ global $wp_rewrite; $wp_rewrite->pagination_base = “”; }