• At the bottom of my PodPress page are several feed options:

    Feed Podcast
    Feed EnhancedPodcast
    Feed Torrent
    Feed Premium
    Feed …

    Now, I’ve gotten the Feed … renamed to what I’ve filled it in with but I want to know how to make another Feed … in addition to what I have already. What I want (as an example) is:

    Feed Podcast (my main podcast, with all the individual casts)
    Feed EnhancedPodcast (to be used in a future date, so I don’t want to use it yet)
    Feed Torrent (see EnhancedPodcast)
    Feed Premium (in case I want to charge)
    Feed Example1
    Feed Example2
    Feed Example3
    etc

    Is this possible and if so, how? I’m not the MOST technical person in the world, but I’m not necessarily a slouch, either. If this involves adding php code to a template, I can do it… I just need to know what to add and to which template. 🙂

    Thanks ahead of time!

    DJ

    http://wordpress.org/extend/plugins/podpress/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ntm

    (@ntm)

    Yes, it is possible.
    It involves a little bit copy and paste of PHP code. One way to get more than 5 podPress Feeds for a blog is to:

    • create a sub folder in the plugins folder of your blog /wp-content/plugins/podpress_options/ .
    • Create a .php file and name it podpress_config.php.
    • Copy the following line of code into this file
      <?php
      // maximum number of the additional podPress Feeds (default: 5)
      if ( ! defined( 'PODPRESS_FEEDS_MAX_NUMBER' ) ) { define( 'PODPRESS_FEEDS_MAX_NUMBER', 5 ); }
      ?>
    • Change the number form 5 to whatever you like (but don’t increase it more than necessary).
    • Store this file in the new folder.

    (You may use the podpress_config-sample.php file. If you do that rename the file to podpress_config.php and copy it to the podpress_options/ folder.)

    Regards,
    Tim

    Thread Starter limeflavored

    (@limeflavored)

    Thank you!

    I had a hard time finding my password, otherwise I’d have responded a couple days ago. 🙂

    I haven’t done this yet… but I will be.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: podPress] Creating New Podpress Feeds’ is closed to new replies.