コード例 #1
0
								<?php 
            echo $item->categoryname;
            ?>
							</a>
						</div>
						<?php 
        }
        ?>
						<?php 
        if ($params->get('item_description_display', 1) == 1) {
            ?>
						<div class="more-content">
								<?php 
            $description = '';
            $introtext = K2ResponsiveListing::_cleanText($item->introtext);
            $fulltext = K2ResponsiveListing::_cleanText($item->fulltext);
            if (strip_tags($introtext) != '') {
                $description = $introtext;
            } else {
                if (strip_tags($fulltext) != '') {
                    $description = $fulltext;
                } else {
                    $description = '';
                }
            }
            if ($description != '') {
                echo K2ResponsiveListing::truncate($description, (int) $params->get('item_des_maxlength_layout_grid'));
            }
            ?>
					 	</div>
					 	<?php