示例#1
0
文件: sidebar.php 项目: kanso-cms/cms
$categories = all_the_categories();
?>

		<?php 
if (!empty($categories) && count($categories) > 1) {
    ?>

			<ul class="list-bullet">
				<?php 
    foreach ($categories as $category) {
        ?>
					<?php 
        if ((int) $category['id'] !== 1) {
            ?>
						<li><a href="<?php 
            the_category_url($category['id']);
            ?>
"><?php 
            echo $category['name'];
            ?>
</a></li>
					<?php 
        }
        ?>
				<?php 
    }
    ?>
			</ul>

		<?php 
}
示例#2
0
文件: single.php 项目: kanso-cms/cms
	<?php 
    }
    ?>

	<h1 class="text-center font-600"><?php 
    the_title();
    ?>
</h1>

	<p class="small text-center">
		<?php 
    the_time('M d, Y');
    ?>
 • 
		<a href="<?php 
    the_category_url();
    ?>
"><?php 
    the_category();
    ?>
</a> • 
		By <a href="<?php 
    the_author_url();
    ?>
"><?php 
    the_author();
    ?>
</a> 
	</p>

	<hr>