make entire div in this loop a hyper link
-
I am trying to to make the entire div “hover-content-inner” a hyper link to the_permalink. Does anyone have an idea how I could do this, or a source one could send me to? Thanks!
‘<?php $posts = query_posts(‘posts_per_page=9&offset=1’); ?>
<?php while ( have_posts() ) : the_post(); ?><div class=”hover-content-inner”>
<h1 class=”entry-title”> ” title=”<?php echo esc_attr( sprintf( __( ‘Permalink to %s’, ‘twentytwelve’ ), the_title_attribute( ‘echo=0’ ) ) ); ?>” rel=”bookmark”>
<?php the_title(); ?>
</h1>
<?php echo do_shortcode(‘[author-post-rating]’); ?>
<?php twentytwelve_entry_meta3(); ?>
</div><?php endwhile; // end of the loop. ?>
<?php wp_reset_query(); // reset the query ?>
‘
The topic ‘make entire div in this loop a hyper link’ is closed to new replies.