How to exclude AMP by page url?
-
I am using BuddyPress and AMP plugin. But budypress pages are not working using AMP. So I disabled AMP in register page. But now the problem is that in internal profile page the uploads image etc are not working….
I disabled AMP in members page as well, but that did not work…
I think I should disable by page URL. How to achieve that?
my members page id in buddypress is 14826.
I used the below in function.php`add_filter( ‘amp_skip_post’, function( $skip, $post ) {
if ( get_the_ID() == 14826) {
$skip = true;
}
return $skip;
}, 10, 2 );`but the URL is https://www.abc.com/members/stevan/profile/change-avatar/
what to do?
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘How to exclude AMP by page url?’ is closed to new replies.