Hallo,
ich vermute das Problem entsteht, weil sich das Plugin recht sp?t einbindet (addfilter prio 99). Mit einem kleinen mu-plugin hab ich da Abhilfe geschaffen.
add_filter( 'the_content', 'prfx_amp_remove_self', 100 );
function prfx_amp_remove_self( $content ) {
if (function_exists('is_amp_endpoint') && is_amp_endpoint()) {
$content = str_replace('target="_self"', '', $content);
}
return $content;
}
Beste Grü?e
rjaehnrich