有人知道如何在我主页上的.headline.img标题之外建立链接吗?我试图在home-page-small.php中修改它。
自:
<?php if ( has_post_thumbnail() ) { ?>
<div class="feature-img page-banner" <?php if ( ! empty( $thumb ) ) { ?> style="background-image: url(<?php echo esc_url( $thumb[0] ); ?>);" <?php } ?>>
<h2 class="headline img-headline"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_post_thumbnail( 'giving-featured-small' ); ?>
要:
<?php if ( has_post_thumbnail() ) { ?>
<div class="feature-img page-banner" <?php if ( ! empty( $thumb ) ) { ?> style="background-image: url(<?php echo esc_url( $thumb[0] ); ?>);" <?php } ?>>
<h2 class="headline img-headline"><a href="MY LINK" rel="bookmark"><?php the_title(); ?></a></h2>
<?php the_post_thumbnail( 'giving-featured-small' ); ?>
但我不确定这是不是正确的地方。