I'm wondering if this is similar to Issue 14 I posted earlier. In the previous case I wanted to pull an image attachment into a post from the series and add a CSS class. You gave me something like this:
But this didn't work either. What did work (somewhat) is dumping everything from $speakers - but I don't want everything - just the individuals name. Here is how I dumped everything from $speakers
FYI, the way I ended up fixing this was:
$speaker = $sermon->get_speaker();
echo $speaker->name;
So, this pulls in a name but I'm not sure how to pull in multiple names.
I'm wondering if this is similar to Issue 14 I posted earlier. In the previous case I wanted to pull an image attachment into a post from the series and add a CSS class. You gave me something like this:
Now I want to pull in the name of a speaker, I've tried this:
But that didn't work. I also tried:
But this didn't work either. What did work (somewhat) is dumping everything from $speakers - but I don't want everything - just the individuals name. Here is how I dumped everything from $speakers
I seem to be missing some key concept. Any suggestions?