Hi there,
for the website of my meetup I need some help. The ‘meeting’ content of the page contains of meetings and each of them contains some talks. Every talk has a ‘speaker’-field that contains the link to the internal speaker profile as text, e.g. ‘speaker/john-doe’ How can I fetch the link as clickable URL? And as bonus the name of the speaker of the ‘name’-field would be great.
What I’ve got:
-
<?php foreach($treffen->children() as $thema): ?>
- <?php echo $thema->title()?>
<?php echo $thema->speaker()->link() .'
<?php endforeach ?>
Thanks in advance
Maik