• Mehmet

    (@mhmtozek)


    Does anyone know how to list WordPress Category feeds in a list format?

    What I want to do is to list all category feeds, without category links.

    Any help is greatly appreciated

Viewing 1 replies (of 1 total)
  • MichaelH

    (@michaelh)

    Didn’t test this but try:

    <?php
    $categories=get_categories('orderby=name');
    foreach($categories as $category) {
      echo '<p>Category: ' . get_category_feed_link( $category->term_id ) . '</p> ';
    }
    ?>

Viewing 1 replies (of 1 total)
  • The topic ‘List Category Links’ is closed to new replies.