フラットデザインなアイコン配布サイト様のご紹介
hiro
magmag
かなり前からある、シンプルで機能があまりついてないテーマを使ってみました。(フックはありません)
投稿本文中の最初の見出しの上に広告コードを挿入するカスタマイズです。
以下をCode Snippetsかfunctions.phpに貼り付けです。
function insert_ad_before_first_heading($content) {
if (is_single() && in_the_loop() && is_main_query()) {
$ad_code = '<div class="ad-code">ここに広告コードを入力</div>';
$heading_pattern = '/<h[1-6][^>]*>[^<]+<\/h[1-6]>/i';
$content = preg_replace($heading_pattern, $ad_code.'$0', $content, 1);
}
return $content;
}
add_filter('the_content', 'insert_ad_before_first_heading');
眠くなってきちゃった・・・。