I don't know . . . can't get much more basic than this, I just want to echo a category feed link using the new function. Here's what I'm using:
<?php get_category_feed_link('78',''); ?>
I don't know . . . can't get much more basic than this, I just want to echo a category feed link using the new function. Here's what I'm using:
<?php get_category_feed_link('78',''); ?>
had the same problem myself and only found out by chance: the function only returns a value so you have to output it yourself:
<?php echo get_category_feed_link('78',''); ?>
that should do the trick, good luck!
This topic has been closed to new replies.