我刚开始以 Bones“框架”为主题,我想让首页文章预览链接到帖子,而不仅仅是<h1>
链接。
我如何实现这一目标?使整个预览链接成为可点击的 div?
这是该部分的模型!:)
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">
<header class="article-header">
<h1 class="h2"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
<p class="byline vcard"><?php _e('Posted', 'bonestheme'); ?> <time class="updated" datetime="<?php echo the_time('Y-m-j'); ?>" pubdate><?php the_time(get_option('date_format')); ?></time> <?php _e('by', 'bonestheme'); ?> <span class="author"><?php the_author_posts_link(); ?></span> <span class="amp">&</span> <?php _e('filed under', 'bonestheme'); ?> <?php the_category(', '); ?>.</p>
</header> <!-- end article header -->
<section class="entry-content clearfix">
<?php the_content(); ?>
</section> <!-- end article section -->