This question may be related to a resolved thread.
Hi there
I have a site with a growing list of contributors. Each contributor has a Profile page that pulls in entries from a variety of channels using username=”{segment_3}” to limit entries to a particular author.
I’m trying to implement the Twitter Timeline plugin, but I can’t figure out how to dynamically add a twitter @name to the code. Each contributor has a Profile channel, and I’ve created a custom field (“twitter-name”) for their Twitter @name.
Here’s what I thought would work:
{exp:twitter_timeline screen_name="{twitter-name}" limit="5"}
<div class="tweet">
<div class="date">{created_at format="%d-%m %g:%i%a"}</div>
<div class="status">{text}</div>
</div>
{/exp:twitter_timeline}However, it doesn’t work — I imagine because the plugin doesn’t know whose {twitter-name} to pull in. Is there a way to link the two?