Hi there, I want to know that how to fix the Text Ads on the Home Page only in Word Press? Any help will be appreciated. Regards bushib
hello Bushib, I think its depend on your Themes, what themes you are using in your wordpress ? maybe you can edit your header.php files if you want to make your ads on your header.. or maybe sidebar.php files if you want to make your ads on your sidebar or maybe footer.php if you want to put your ads on your footer. You can find your themes directory inside wp-content/themes directory... Good luck
Use below given code for that. <?php if(is_home() && $post==$posts[0] && !is_paged()) { ?> Your Link or Ad here. <?php } ?> Code (markup): DON.
If you have a static page as your home page like we do in our Wordpress based web development website then you'll have to edit page.php or the template that your home page uses. If you want the ads in other parts of the page then you'll need to look at footer.php, header.php, sidebar.php or the other files that make uo your home page.