sasaleyte adlı üyeden alıntı: mesajı görüntüle
Bu temada çalışmıyor eklentiler.
Eklenti kullanmadan functions.php dosyasını açın ve aşağıdaki kodları ekleyin.

add_filter( 'the_content', 'top_and_bottom_ads' );
 
    function top_and_bottom_ads( $content ) {
    
        if (is_single()) {
            $adsTop = ''; // Yazı üstüne reklam alanı için buraya reklam kodunuzu ekleyin.
            $adsBottom = ''; // Yazı altına reklam alanı için buraya reklam kodunuzu ekleyin.
            return $adsTop . $content . $adsBottom;
        }
    
        return $content;
    }