我是新来的堆栈溢出。
首先感谢所有社区接受我的订阅。
我正在建设的一个站点有一个小问题:
http://gianfabiopezzolla.com/centocelleonline.it
在头版,我有一篇关于最后一篇文章的男子汉小说,它展示了作者的形象和标题。
我想为每个特定的图片设置一个到不同页面的自定义链接(例如,第一个特色图片->联系人页面)。
我试过下面的代码,但似乎不起作用:
<article id="post-<?php the_ID(the_id_of_post); ?>" <?php post_class(); ?>>
<div class="item-sizer">
<?php if ( has_post_thumbnail() && ( get_theme_mod( 'index_feat_image' ) != 1 ) ) : ?>
<div class="entry-thumb">
<a href="<?php the_permalink(the_id_of_page); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail('oria-small-thumb'); ?></a>
</div>
<?php endif; ?>
<header class="entry-header blog-entry-header">
<?php the_title( sprintf( '<h1 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink(the_id_of_page) ) ), '</a></h1>' ); ?>
</header><!-- .entry-header -->
</div>
</article><!-- #post-## -->
有人能帮我吗?
最佳答案
我想如果你用这样的get_permalink就行了
$link = get_the_permalink($page_id);
<div class="entry-thumb">
<a href="<?php echo $link; ?>"> title="<?php the_title(); ?>"><?php the_post_thumbnail('oria-small-thumb'); ?></a>
</div>
其中
$page_id
是所需页面的id这是因为
the_permalink();
直接回声获取_permalink();
将返回一个必须手动回显的值。这就是为什么你的链接没有被打印出来。
希望有帮助,请试试。
关于php - WordPress-每个特色图片都有不同的自定义链接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36197345/