• How to RSS feed into your Wordpress post

    Posted on November 23rd, 2008 admin 1 comment


    In Blogger, it is quite easy to add content from an RSS or Atom feed to your blog. I used this feature in Blogger so far. However, I can’t find it in Wordpress.

    FirstRSS is a simple RSS aggregator plugins for WordPress which I found recently. I have used FirstRSS plugin in my main homepage – ChengSoonGiap.com to insert RSS feed of all my related blogs.

  • How to have Adsense appear under the first post in Wordpress blog?

    Posted on October 28th, 2008 admin No comments

    Following is what I learned recently on having Adsense codes only appear after the first post in Wordpress blog and nowhere else.

    Open the index.php file and search for the following lines:

    <!–p if (have_posts()) –>
    <!–p $postCount=0;–>
    <!–p while (have_posts()) : the_post(); $loopcounter++–>
    <!–p $postCount++–>

    Add the following above these lines:

    <?php
    $postnum = 1;
    $showadsense1 = 1;
    ?>


    Read the rest of this entry »