目次
対象のURLをPageSpeed Insightsにかける
「PageSpeed Insights」にかける。
目次の下にアドセンスを挿入するコードを試してみた
◯◯◯◯◯◯◯◯というコードは、自身の広告コードに置き換える必要あり。
/* TOC 生成完了時に広告を連結 */
function add_ad_below_cocoon_toc( $html, $harray, $is_widget ) {
// ウィジェット/ショートコード経由やログイン中は除外したい場合
if ( $is_widget || is_user_logged_in() ) {
return $html;
}
$ad = <<<HTML
<div class="ad-after-toc" style="margin:20px 0;">
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-◯◯◯◯◯◯◯◯"
data-ad-slot="◯◯◯◯◯◯◯◯"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>(adsbygoogle = window.adsbygoogle || []).push({});</script>
</div>
HTML;
return $html . $ad; // 目次の真下に追加
}
add_filter( 'get_toc_tag', 'add_ad_below_cocoon_toc', 10, 3 );
コメント