Example #1
0
            ?>
</p>
	<?php 
        }
        ?>

	<div class="content"><?php 
        comment_text();
        ?>
</div>

	<?php 
        if (!$noreply) {
            ?>
		<a href="#" class="comment-reply-link" <?php 
            echo element_data(array('parentid' => $comment->comment_ID, 'replyto' => $comment->comment_author));
            ?>
>
			<?php 
            _e('Reply');
            ?>
		</a>
	<?php 
        }
        ?>


</div><!-- #comment-##  -->

<?php 
        break;
Example #2
0
        }
        foreach ($unsorted as &$c) {
            if ($c->term_id == $_id) {
                $categories[] = $c;
                unset($c);
            }
        }
    }
} else {
    $categories = $unsorted;
}
foreach ($categories as $category) {
    $count++;
    ?>
				<div class="grid-item" <?php 
    echo element_data(array('type' => 'category', 'term' => $category->term_id));
    ?>
>
					<header>
						<h1>
							<a class="section-link" href="#">
								<?php 
    echo $category->name;
    ?>
							</a>						
						</h1>						
					</header>
				</div>
			<?php 
    if ($count == $grid_count) {
        break;