Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2007-12-28 17:12:57

Phlip
Member
Registered: 2005-03-10
Posts: 36

next article thumbnail

Is there a way to show my next article’s thumbnail, instead of just the next article title? Thanks for any help.

Offline

#2 2008-01-02 14:34:19

Phlip
Member
Registered: 2005-03-10
Posts: 36

Re: next article thumbnail

Is this a dumb question? I’ll assume it can’t be done, I couldn’t find any plugins/information on this.

Offline

#3 2008-01-02 15:05:28

net-carver
Archived Plugin Author
Registered: 2006-03-08
Posts: 1,648

Re: next article thumbnail

Phlip

Do you need any restrictions on how the next article is selected — like matching section / category etc.?


Steve

Offline

#4 2008-01-02 15:34:18

net-carver
Archived Plugin Author
Registered: 2006-03-08
Posts: 1,648

Re: next article thumbnail

Ok, without narrowing anything down by section or category, the following should show the next article’s “article image” (I’m assuming that’s what you mean when you say ‘thumbnail’ in your post).

Put this in the article form you are using to display your articles.

<txp:php>
global $next_id;
if( !empty( $next_id ) )
	{
	$next_id = (int)$next_id;
	article_push();
	$rs = safe_row("*, unix_timestamp(Posted) as uPosted", "textpattern", 'ID='.$next_id." limit 1;");
	if ($rs) 
		{
		extract($rs);
		populateArticleData($rs);
		$atts = array();
		echo article_image( $atts );
		}
	article_pop();
	}
</txp:php>

Steve

Offline

#5 2008-01-02 18:37:18

Phlip
Member
Registered: 2005-03-10
Posts: 36

Re: next article thumbnail

Thanks Steve that works.

Offline

#6 2008-02-09 21:48:29

sthmtc
Member
From: CGN, GER
Registered: 2005-01-17
Posts: 586
Website

Re: next article thumbnail

i have to do the same thing except for the fact that i need to restrict it to the current section and category and that the article list is sorted by title. anyone? :)

edit: guess my problem is a bit more complicated /different, so i’ve started a separate thread

Last edited by sthmtc (2008-02-09 22:12:04)

Offline

Board footer

Powered by FluxBB