Hey Q,
I’m sorry I didn’t get at first that you’re referring to paginated archive pages. Providing screenshots and specific URLs can be very helpful next time to avoid confusion though.
It’s technically possible to attach the blog page number to the blog title. It would look like this:

Below are the steps to achieve that:
-
Since this would need customization, you need to first learn how to override template files of our theme. Here’s the guide: https://theme.co/apex/forum/t/customizations-best-practices/205
-
Go to this directory in your WordPress install \wp-content\themes\x\framework\legacy\cranium\headers\views\(ethos, integrity, icon or renew)
-
Copy the _landmark-header.php file
-
Paste the file in the same folder structure in your child theme like \themes\x-child
\framework\legacy\cranium\headers\views\(ethos, integrity, icon or renew). You need to create the folders if they don’t exist yet.
-
Open the copied file in the WordPress Theme Editor or any text editor and do the following:
-
Add this line under the variables section.
$paged = (is_paged() && get_query_var( 'paged', 1 ) !== 0 ) ? get_query_var( 'paged', 1 ) : 1;

7.) Add this code in the part that’s outputting the title under the is_home
WordPress Conditional Tag
. " Page " . $paged

You might want to add the code in the last step to other conditional tags in the _landmark-header.php file also like in the is_tag()
and is_category()
.
I will list this as feature request so it might be taken into consideration for future developments.
Hope that helps.