如何建立.headline.img-headline的链接

时间:2016-08-12 12:13:31

标签: php html css wordpress

有人知道如何在我主页上的.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' ); ?>

但我不确定这是不是正确的地方。

0 个答案:

没有答案