1 Star 0 Fork 0

是你的单单呀/HTML5-Reset-WordPress-Theme

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 955 Bytes
一键复制 编辑 原始数据 按行查看 历史
CK Hicks 提交于 2013-05-15 16:45 . Capitalizing "WordPress"
<?php
/**
* @package WordPress
* @subpackage HTML5-Reset-WordPress-Theme
* @since HTML5 Reset 2.0
*/
get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php posted_on(); ?>
<div class="entry">
<?php the_content(); ?>
</div>
<footer class="postmetadata">
<?php the_tags(__('Tags: ','html5reset'), ', ', '<br />'); ?>
<?php _e('Posted in','html5reset'); ?> <?php the_category(', ') ?> |
<?php comments_popup_link(__('No Comments &#187;','html5reset'), __('1 Comment &#187;','html5reset'), __('% Comments &#187;','html5reset')); ?>
</footer>
</article>
<?php endwhile; ?>
<?php post_navigation(); ?>
<?php else : ?>
<h2><?php _e('Nothing Found','html5reset'); ?></h2>
<?php endif; ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mrchaxs/HTML5-Reset-WordPress-Theme.git
git@gitee.com:mrchaxs/HTML5-Reset-WordPress-Theme.git
mrchaxs
HTML5-Reset-WordPress-Theme
HTML5-Reset-WordPress-Theme
master

搜索帮助