• I want to link an rss feed {of a single posts} to an image file, it was easy in wp-1.2, but the same syntax doesnt work for wp 1.5, can somebody please help me
    i am using this syntax
    <?php comments_rss_link(__("<img border =\"0\" src=\"button.png\" title=\"The latest comments to this post in RSS\" /> ")); ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • This works for me:

    <?php comments_rss_link('<img border="0" src="button.png" title="The latest comments to this post in RSS" />'); ?>

    Important points:
    1. Make sure the path to button.png is correct.
    2. __() is not required unless passing a string through WP’s localization feature.

    Thread Starter Anat

    (@anat)

    thanks Kafkaesqui, it works now!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘linking rss feed to image’ is closed to new replies.