We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Exit mobile version
1 parent 353561f commit 40688e0Copy full SHA for 40688e0
src/MobileRedirection.php
@@ -78,6 +78,14 @@ public function register() {
78
add_filter( 'get_comments_link', [ $this, 'add_noamp_mobile_query_var' ] ); // For get_comments_link().
79
add_filter( 'respond_link', [ $this, 'add_noamp_mobile_query_var' ] ); // For comments_popup_link().
80
}
81
+
82
+ return;
83
+ }
84
85
+ // Show `Exit mobile version` link even mobile redirection is disabled and in Reader mode.
86
+ if ( AMP_Theme_Support::READER_MODE_SLUG === AMP_Options_Manager::get_option( Option::THEME_SUPPORT ) && $this->is_mobile_request() ) {
87
+ add_action( 'wp_head', [ $this, 'add_mobile_version_switcher_styles' ] );
88
+ add_action( 'wp_footer', [ $this, 'add_mobile_version_switcher_link' ] );
89
90
91
0 commit comments