@charset "UTF-8";
/*
 Theme Name: SANGO Child
 Theme URI: https://saruwakakun.design
 Author: SARUWAKA
 Author URI: https://saruwakakun.com
 Template: sango-theme
 Version: 4.0
*/
/*こちらはSANGOの子テーマ用CSSです。以下にCSSを記入していきましょう。*/



function add_advertisement_notice($content) {
    if (is_single() && is_main_query()) {
        $notice = '<div class="pr-notice" style="padding: 10px; margin-bottom: 20px; border-left: 4px solid #f76a2d; background: #fff8f4;">
        <strong>※この記事には広告が含まれています。</strong><br>
        一部プロモーションが含まれることがあります。
        </div>';
        return $notice . $content;
    }
    return $content;
}
add_filter('the_content', 'add_advertisement_notice');