I want to show a static banner ad on a particular post page of my wordpress blog. How do I do that? Is there any plugin out there that can manage my ads (other than Google adsense). I just want to show a static banner of certain advertiser on my blog.
As far as the plugin goes. I can't think of a plugin that can do that. But you can always hardcode it on the template. You can use. is_post() or is_page() Hope this helps =))
I would suggest that you read these http://codex.wordpress.org/Function_Reference/is_single http://codex.wordpress.org/Function_Reference/is_page
If you want the banner to be within the post content, you can simply paste it in the post using the HTML editor. If you want it in the sidebar for that post, you can use one of the "per-post sidebar widget" plugins, and make a text widget for that post specifically and your banner's HTML to it. If you want your banner in the header of post, then it's more tricky. You'd have to know a little bit of programming like Yuuko008 recommended.
Ya.. I want to add the banner in the right sidebar of my blog.. Or is there any way I can divide that space into two 125X125 size banner ad sections?
For that I recommend the Custom widgets plugin. It allows you to specify a widget for each page/post. Simply create a widget and add your banners HTML to it, and make it specific to the post you want.