Yes you can redirect the link to any other else but you cannot set the different homepage for different screen views as you said you want to change the mobile home page and its not possible we guess. It means the contents will be same but the layout might be changed through responsiveness.
does anyone else know how i can totally override the AMP home page for this theme, perhaps using another plugin?
I use the standard wordpress AMP plugin as well.
add this to functions.php and change the desired mobile homepage…seems to work !
add_action( ‘wp’, ‘tu_redirect_mobile’ );
function tu_redirect_mobile() {
if ( wp_is_mobile() AND is_front_page() ) {
wp_redirect( ‘https://the5krunner.com/mysepcialpage/’, 301 );
exit;
}
}
what i will do is then redirect myspecialpage to a category. that category will be a list of recent posts (actually it will show several categories that will cover most of the latest posts) 😉