/wp-content/plugins/.This should result in the following file structure:
- wp-content
- plugins
- MyAdsense
| MyAdsense.php
| readme.txt
| screenshot-1.jpg
| screenshot-2.jpg
| screenshot-3.jpg
| screenshot-4.jpg
| screenshot-5.jpg
- css
| adclassic.css
| adfresh.css
| adsclassic.css
| adsfresh.css
- js
| ad.js
| color.class.js
| edit-ads.js
- lang
| MyAdsense.pot
| MyAdsense-fr_FR.po
| MyAdsense-fr_FR.mo
- php
| ad.php
| ads.php
| ads_head.php
| adsense.php
| edit-ad-form.php
| edit-ads.php
| fakelink.php
| html.php
| setform.php
| settings.php
See Also: "Installing Plugins" article on the WP Codex
Be sure the plugin folder name is MyAdsense and not myadsense.
Then just visit your admin area and activate the plugin.
Fill your settings under the admin option : Settings > MyAdsense.
Create/Delete/Update your ads or the default under the admin option : Manage > MyAdsense
To add your ads on your blog : two ways :
Insert into a post or a page the following
to display default ad :
''
to display 'nameofthe_ad' ad :
'
</em>
**Insert** in your code :
<em>
to display default ad :
'<?php
if ( class_exists( 'MyAdsense' ) )
MyAdsense::doit();
?>'
to display 'name_of_the_ad' ad :
'<?php
if ( class_exists( 'MyAdsense' ) )
MyAdsense::doit( 'name_of_the_ad' );
?>




