Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
Avatar & Tag within tag through PHP
In my group blog, each article will feature the author’s avatar. I’d like to accomplish that using this sort of code (having spliced in the <txp:author /> support from svn)
<code>
<txp:thumbnail name=”<txp:author />” />
</code>
But of course such a syntax would be illegal. And being PHP-illiterate, I cannot devise a workaround by myself. Can anyone help? Thank you.
Offline
Re: Avatar & Tag within tag through PHP
Would the <a href=“http://textpattern.org/plugins/115/rssauthorinfo”>rss_author_info plugin</a> do what you want?
Offline
Re: Avatar & Tag within tag through PHP
Try this:
<txp:php>
echo thumbnail( array( 'name' => author( array() ) ) );
</txp:php>
Offline
Pages: 1