Using Radio Buttons to send data to certain pages

Hey, so I was building an app where users can create a post, and depending on the content of the post, send it to two feeds, the main feed where all posts go, and a more specified feed more related to their post. I want to use radio buttons so users can choose which “secondary feed” their post will go to. Any ideas on how I can do that?

How about this:

  • create an option set “Feeds” with all the different feeds a post can be shown
  • a field “secondary_feed” in the post of type “Feeds”
  • with the radio buttons the field “secondary_feed” is set
  • then the post is shown according to the value of the field “secondary_feed”

Thanks! I did end up figuring it out and got it working another way, but very similar!