functions.php'de en sondaki ?> kodundan bir satır üste:
Alıntı
function adsense_shortcode( $atts ) {
extract(shortcode_atts(array(
'format' => '1',
), $atts));

switch ($format) {
case 1 :
$ad = 'ADSENSE KODU';
break;
}
return $ad;
}
add_shortcode('adsense', 'adsense_shortcode');
yazı içine

Alıntı
[adsense]
kaynak: http://www.lancelhoff.com/adsense-wordpress-shortcode/