• I want to edit my WP RSS feed to display a specific URL instead of the default (permalink) for certain categories. I need to only do this for certain categories as the standard permalink is not when I want to direct subscribers to.

    I have done this same thing on my search.php and archive.php using conditional statements, but how do I accomplish this in the RSS feed?

    functions.php?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jcprovideo

    (@jcprovideo)

    Here is an example of how I did it on my search results (search.php)

    <?php if ( in_category('3') ) { ?>
            <h3><a href="<?php bloginfo('url'); ?>/about/#<?php the_ID(); ?>" rel="bookmark" title="Permanent Link to About Page">
              <?php the_title(); ?>
              </a></h3>
    Thread Starter jcprovideo

    (@jcprovideo)

    Perhaps I should rephrase. How does one go about customizing their RSS feed. Is there a template like index.php but for RSS?

    Thread Starter jcprovideo

    (@jcprovideo)

    Anyone…Buler?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Edit certain Permalinks for RSS feed’ is closed to new replies.