Wordpress sitenizde paylaştığınız yazılardaki Google kelimelerini aşağıdaki kodları ile otomatik renkli olarak yazdırabilirsiniz.



functions.php'ye bu kodları ekleyin
add_filter( 'the_content', 'GoogleEdit' );
function GoogleEdit( $Content )
{
    $GoogleEditE = array("Google");
    $GoogleEditY = array('<div class="google-font"><span class="g">G</span><span class="o">o</span><span class="o2">o</span><span class="g">g</span><span class="l">l</span><span class="e">e</span></div>');
    $GoogleEdit = str_replace($GoogleEditE, $GoogleEditY, $Content);
    return $GoogleEdit; //the_content();
}
style.css'ye bu kodları ekleyin
.google-font {display: inline-block; font-weight: 600;}
.google-font .g {color: #4285f4;}
.google-font .o {color: #ea4335;}
.google-font .o2 {color: #fbbc05;}
.google-font .l {color: #34a853;}
.google-font .e {color: #ea4335;}
Döviz Kuru Kodları