I'm trying to get a list of recent postimages in the sidebar with the title of the post as alt-tag
I've tried with the
which off course don't work because of the <a href> tag.
but simple replacing this tag with the <img> tag also doesn't work
Is this possible ?
Anyone successful on this road ?
I think i'm getting there myself...
I've tried with the
PHP Code:
<a href="{{post_link}}">{{ post_image }} alt="{{post_title}}"</a>
which off course don't work because of the <a href> tag.
but simple replacing this tag with the <img> tag also doesn't work
PHP Code:
<img src="{{post_link}}">{{ post_image }} alt="{{post_title}}"</img>]
Is this possible ?
Anyone successful on this road ?
I think i'm getting there myself...
PHP Code:
<?php nm_custom_display_recent('
<a href="{{ post_image_url }}" alt="{{ post_title }}">
'); ?>