
If you want or need to place advertisements or anything else, only on the front page of your Wordpress blog, you either must have access to edit the current theme or have a plugin installed (Exec-PHP Plugin, Samsarin PHP Widget) which allows widgets to accept php code.
In your theme or widget wrap the code below in PHP tags and any code that you place after echo ' and before '; will be displayed only if it is the main blog front page, any other page will not have any of the code.
if (is_home()) {
echo 'PLACE HTML CODE IN HERE';
}
If you would like to make a comment, please fill out the form below.