wordpressサイドバーにアドセンス広告

wordpressのサイドバーにアドセンス広告を挿入するとはみ出してしまう。
ここでwordpressの外観→テーマファイルエディターからsideber.phpからアドセンス広告を挿入するとはみ出しなくきれいに挿入出来る。

<?php
if ( ! is_active_sidebar( ‘sidebar-1’ ) || ! is_keni_layout_sidebar() ) {
return;
}
?>
<aside id=“secondary” class=“keni-sub”>
        <! ここからアドセンスの広告ユニットを貼り付け >
<script async src=“//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js”></script>
<ins class=“adsbygoogle”
     style=“display:inline-block;width:300px;height:250px”
     dataadclient=“ca-pub-xxxxxxxxxxxxxxx”
     dataadslot=“xxxxxxxxxxx”></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
        <! ここまでアドセンスの広告ユニットを貼り付け >
<?php dynamic_sidebar( ‘sidebar-1’ ); ?>
</aside>