Recent Topics

1 Mar 04, 2004 00:11    

Bonsoir !
J'aimerai savoir si quelqu'un connaissait une fonction qui permettrai de lister tous les articles d'une méme catégorie sous forme de liens ?? Ce serait pratique non ? (enfin je trouve :D )

Voila, sinon aprés avoir testé tout un tas de scripts pour mon site je pense m'arréter sur B2evolution, il vraiment est nikel ce programme !
Merci à tous...

2 Mar 17, 2004 12:20

je crois que si tu fais un include de ca :
<?php include( dirname(__FILE__)."/_archives.php"); ?>
en forcant la categorie a une valeur donnee
ca devrait marcher ?

3 Mar 18, 2004 08:04

Merci beaucoup c'est sympas...Fplanque avait commencé a me mettre sur la voix d'une autre solution en MP, et j'y suis arrivé..
Mais je testerai quand méme ton idée

:)

++
shai

4 May 12, 2004 10:06

J'ai fait ca :

	<?php
		// Dirty trick until we get everything into objects:
		$saved_blog = $blog;  
		$blog = 5;	// Blog IRLANDE now
		// You can restrict to specific categories by listing them in the two params below: '', array()
		// '', array(9,15) will restrict to cats 9 and 15
		// '9,15', array() will restrict to cats 9,15 and all their subcats
		$BlogBList = new ItemList( $blog,  $show_statuses, '', $m, $w, '25,25', array(), $author, $order, $orderby, $posts, '', '', '', '', '', '', '', '8', 'posts', $timestamp_min, $timestamp_max );
			
		while( $BlogBList->get_item() )
		{ 

		?>
		<?php permalink_anchor(); ?>
		<a href="<?php permalink_link() ?>" title="Permanent link to full entry"><?php the_title(); ?></a> &middot; 
		<?php
		}
		
		// Restore after dirty trick:
		$blog = $saved_blog;		
	?>


c'est pas super optimise, mais ca marche sur http://www.uisce.net/irl.php
le "Ireland articles available here :" c'est ca ... ;-)

5 Sep 08, 2004 01:35

shai wrote:

Merci beaucoup c'est sympas...Fplanque avait commenc? a me mettre sur la voix d'une autre solution en MP, et j'y suis arriv?..
++
shai

Tu pourrais poster la solution non?


Form is loading...