2012-11-25 3 views
0

Bones "프레임 워크"에서 주제를 시작한 Im은 링크를 <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 --> 

답변

0

당신은 항상 CSS과 결합 자바 스크립트 솔루션을 사용할 수 있습니다

<article style="cursor:pointer;" onclick="window.location='<?php the_permalink(); ?>'"> 
    ... 
</article> 
+0

완벽하게 작동했습니다. 고마워요! –

0

확실하지가 HTML5 사양을 준수하는 경우를,하지만 당신은 포장 이동 시도 할 수 있습니다 모든 기사 .. :

<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article"> 

<!-- move <a> to here --> 

<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> 

           <header class="article-header"> 

            <h1 class="h2"><?php the_title(); ?> </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 --> 
<!-- close </a> here --> 
    </a> 
관련 문제