WordPress Help in Sparkling theme

Hello,
I am using sparkling theme on my blog http://designsblazed.com

Can you please tell me how to add adsense code so it can be shown in every single post in first paragraph on one side as this attached image shows.
Also I read many blogs including colorlib’s. When they update the post, it shows on top like blog shows last update : date , but when I edit my post and think that it will show on top and show the updated time, it only shows the published date and at the lower place when i published.

Thank you.

Hi @swapnils,

I hope you are well today and thank you for your questions.

Can you please tell me how to add adsense code so it can be shown in every single post in first paragraph on one side as this attached image shows.

You can try achieving this using the solutions as described on the following pages.

http://www.themelab.com/display-inline-ads-wordpress/
http://www.shoutmeloud.com/add-adsense-between-post-quick-adsense-wordpress-plugin.html

Also I read many blogs including colorlib’s. When they update the post, it shows on top like blog shows last update : date , but when I edit my post and think that it will show on top and show the updated time, it only shows the published date and at the lower place when i published.

The posts are displayed by publish date and not by updation date so you have to edit your post publish date to change its order in post listings.

You can display the post update date by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

time.updated:before {
    content: "Updated : ";
    display: inline-block;
    margin-right: 5px;
}
time.updated {
    display: inline-block;
    margin-left: 8px;
}

Best Regards,
Movin

Hi @Movin I am trying to add Adsense between posts (Specifically after every 3 posts on Category pages) I am using the following code (In Main Index php file)

<?php $count = 3; ?> Above <?php while (have_posts()) : the_post(); ?>

The following code Above <?php endwhile; ?>

<?php if ($count == 3) : ?>
AdSense Code 1
<?php endif; $count++; ?>

But the Ads Keep appearing right after the first post, i want them to appear after 3 posts.
Thanks in advance.

@soshailakash To help us keep support thread separates could you please create your own thread for your question here https://colorlibsupport.com/c/sparkling/ instead of replying on others thread as it makes the thread messy and hard to read.

If you want to you can also add reference of this thread in your newly created thread.

We would be more than happy to help you on your new thread.