Recent Topics

1 Feb 06, 2007 23:06    

Hello, I was wondering if it is possible to display the post title (evo_posts --> post_url column in the database) as a link.

I've been fooling around with this snippet but have not had any luck.

<?php $Item->title(); ?>

I keep getting errors when I try to enclose the above in an href.

i.e.

<a href="<?php $Item->title(); ?>">External Link</a>

Thanks much for your help,
johnnyeng

2 Feb 07, 2007 20:21

Like this?

$Item->permanent_link('#title#');

3 Feb 12, 2007 21:57

hmm, that doesn't seem to work either.
That displays the permalink.

I'd like to link to an external site.
The following snippet will not display properly, but it might give a better idea of what I'm going for...


<?php echo ('<a href='); ?>
<?php $Item->title(); ?>
<?php echo ('>More >></a>'); ?>

Thanks much.


Form is loading...