Files
shopPRO/templates/articles/articles-entries.php
2024-10-23 13:44:50 +02:00

8 lines
279 B
PHP

<div class="row">
<? if ( is_array( $this -> articles ) ): foreach ( $this -> articles as $article ):
$tpl = new \Tpl;
$tpl -> page_id = $this -> page_id;
$tpl -> article = $article;
echo $tpl -> render( 'articles/article-entry' );
endforeach; endif;?>
</div>