Archived topic
Dont work youYube videos im "tags"
1 reply · Started by Anna on September 20, 2021
Hello. Why not available youtube on sites /tags/, for example: https://shpargalka.work/tag/eskort/
Best Regards
Alena
Hi there,
WordPress automatically strips HTML from Tag / Category term descriptions AND it will not auto embed a YouTube video.
You will need to:
1. Add this PHP Snippet to use HTML in Tag Descriptions:
foreach ( array( 'pre_term_description' ) as $filter ) {
remove_filter( $filter, 'wp_filter_kses' );
if ( ! current_user_can( 'unfiltered_html' ) ) {
add_filter( $filter, 'wp_filter_post_kses' );
}
}
foreach ( array( 'term_description' ) as $filter ) {
remove_filter( $filter, 'wp_kses_data' );
}
How to ADD PHP: https://docs.generatepress.com/article/adding-php/
2. You will need to create an Embed code for your YouTube videos and add the code to your Term Description.
You can use this site to create embed code:
This is an example of your videos embed code:
<style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style><div class='embed-container'><iframe src='https://www.youtube.com/embed/G_9dHXIb9Ro' frameborder='0' allowfullscreen></iframe></div>