[RSS Feed/News] How to combine two variables !?

Status
Not open for further replies.

XenForo

Administrative
  • Thread starter
  • Admin
  • #1
I have a pretty basic image rotator in a sidebar widget which pulls images on a random order through the rand(1,20) function.
It is very similar to this Xenforo resource

HTML:

Code:
<xf:set var="$image.1">image1.jpg</xf:set>
<xf:set var="$image.2">image.2.png</xf:set>
<xf:set var="$image.3">image3.jpg</xf:set>
<xf:set var="$image.4">image.4.png</xf:set>

I display them on the widget by a simple call as below

HTML:

<div><img src="{$image.{{ (rand(1,20)) }}|raw}" /></div>

What I would like...

Read more

ادامه مطلب...
 
Status
Not open for further replies.
Back
Top Bottom