Hi Frank,
YouTube by EmbedPlus registers its shortcode only on the front-end. So, in the admin area, neither The SEO Framework nor WordPress is aware of this shortcode.
However, there’s good news: although the shortcode is displayed as-is as a description part in the admin area, it won’t be displayed like that on the front-end; which is what search engines see. So, it’s an inconsistency displayed in the placeholders only, and there’s no need to be worried.
Now, to fix this, kindly ask the authors of that plugin to register the shortcode in the admin area too; like Gutenberg, which makes everything available on both ends for ensured compatibility 🙂
I’m a bit stumped on the need for that plugin, as WordPress supports YouTube embedding out of the box… without a shortcode: just paste the YouTube URL and WordPress converts it.
Thread Starter
Frank
(@frankswift)
Thanks, that’s a relief! I use it because the normal WordPress isn’t capable of embedding playlists and galleries from YouTube, or schema tags for additional SEO value and other customizations where I can change the look and functionality of the YT embeds, so I use the plugin to compensate. Hopefully the developers will listen when i ask them to update accordingly.
I understand, thanks for enlightening me 🙂
If you’re looking for a quick fix–so that the counters and other audits are correct–, you can use this snippet:
add_action( 'init', function() {
if ( is_admin() )
add_shortcode( 'embedyt', '__return_empty_string' );
} );
Cheers!
Thread Starter
Frank
(@frankswift)
Thank you so much! I appreciate the quick responses!
FYI, we resolved it in the plugin.
[ Signature deleted ]