我是Wordpress的新手。我有功能图像的问题。我需要在特征图像中添加URL(当我们点击该特征图像时,它应该重定向到该特定的URL)。
也可以将URL提供给我在普通页面中使用的投资组合类别页面的标题。
答案 0 :(得分:1)
您需要在php文件中添加此代码:
<?php if ( has_post_thumbnail()) {
echo '<a href="' . get_permalink($post->ID) . '" >';
the_post_thumbnail();
echo '</a>';
}?>
答案 1 :(得分:0)
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail( 'large' ); ?></a>
而不是此<?php the_permalink(); ?>
您可以指定自己的网址
答案 2 :(得分:0)
使用<?php the_permalink(); ?>
添加网址链接到wordpress中投资组合中的要素图片。
答案 3 :(得分:0)
这终于奏效了。
<a href="<?php echo get_post_meta($post->ID, $sr_prefix.'_portfolio_externalurl', true); ?>"><?php } the_post_thumbnail('portfolio-crop-thumb');