It looks like you're new here. If you want to get involved, click one of these buttons!
$category = uri_segment(2);
if ($category) :
	$tag = fuel_model('tags', array('find' => 'one', 'where' => array('slug' => $category)));
	$articles = $tag->articles;
	$articles_model = $tag->get_articles(TRUE);
	if (!empty($articles_model)) :
		$featured_images = $articles_model->find_all(array('featured_image !=' => ''));
	else :
		$featured_images = '';
	endif;
else :
	redirect_404();
endif;
Comments