Linki en dıştaki elemana ver mesela <div id="video1"> ise bunun da dışına ekle. Oradaki php kodunu atarsan sana daha kolay yardımcı olabilirim.
<div class="widget_highlighted_post_area">
<?php $featured = 'colormag-highlighted-post'; ?>
<?php
$i=1;
while( $get_featured_posts->have_posts() ):$get_featured_posts->the_post();
?>
<div class="single-article">
[B]<div class="img1"><span></span></div>
[/B] <?php
if( has_post_thumbnail() ) {
$image = '';
$title_attribute = get_the_title( $post->ID );
$image .= '<figure class="highlights-featured-image">';
$image .= '<a href="' . get_permalink() . '" title="'.the_title( '', '', false ).'">';
$image .= get_the_post_thumbnail( $post->ID, $featured, array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ) ) ).'</a>';
$image .= '</figure>';
echo $image;
} else { ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
<img src="<?php echo get_template_directory_uri(); ?>/img/highlights-featured-image.png">
</a>
<?php }
?>
<div class="article-content">
<?php colormag_colored_category(); ?>
<h3 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute();?>"><?php kes_baslik(28); ?></a>
</h3>
<div class="below-entry-meta">
<?php
$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>';
$time_string = sprintf( $time_string,
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() )
);
printf( __( '', 'colormag' ),
esc_url( get_permalink() ),
esc_attr( get_the_time() ),
$time_string
);
?>
</div>
</div>
</div>