Seditio Source
Root |
./othercms/b2evolution_7.2.3/skins_fallback_v6/_postidx.disp.php
<?php
/**
 * This is the template that displays the post index for a blog
 *
 * This file is not meant to be called directly.
 * It is meant to be called by an include in the main.page.php template.
 * To display the archive directory, you should call a stub AND pass the right parameters
 * For example: /blogs/index.php?disp=postidx
 *
 * b2evolution - {@link http://b2evolution.net/}
 * Released under GNU GPL License - {@link http://b2evolution.net/about/gnu-gpl-license}
 * @copyright (c)2003-2020 by Francois Planque - {@link http://fplanque.com/}
 *
 * @package evoskins
 */
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );

// --------------------------------- START OF POST LIST --------------------------------
skin_widget( array(
       
// CODE for the widget:
       
'widget'              => 'coll_post_list',
       
// Optional display params
       
'block_start'         => '<div class="evo_widget $wi_class$">',
       
'block_end'           => '</div>',
       
'block_display_title' => false,
       
'order_by'            => 'title',
       
'order_dir'           => 'ASC',
       
'limit'               => 1000,
       
'page'                => param( 'coll_post_list_paged', 'integer', 1 ),
    ) );
// ---------------------------------- END OF POST LIST ---------------------------------

?>