Forgive my lack of knowledge, I have very little experience with wordpress and only understand a little about coding. :)
1.
What happens to the data entered into the Website URL? I have been testing my gravity form and when I enter in a URL it doesn't show up anywhere in the back end that I can find.
2.
I am trying to have the website URL be attached to the post so that visitors can click through to where the post info came from. I guessing this would require me editing my loop page? If so, what is the tag for the Websites Advanced Field? (Note: it has been brought to my attention that the Website Advanced Field can not handle complex URLs so I will need to use some other field for users to submit theirs URLs with.)
I found where I need to create/insert the code since my posts already have a tag to insert the category on the posts. So I think I only need to edit this code to hook the [strike]Website Advanced Field value[/strike] single line text field or some other field to enable users to submit complex URLs:
<?php
foreach((get_the_category()) as $category) {
echo $category->category_nicename . ' ';
}
?>
Additionally, if I wanted to have the link say "Visit Source", how would I accomplish that?