Wordpress - 每个特色图片的不同自定义链接

时间:2016-03-24 09:55:31

标签: php html wordpress

我是Stack溢出的新手。 首先感谢所有社区接受我的订阅。 我对正在构建的网站有一点问题:

http://gianfabiopezzolla.com/centocelleonline.it

在头版我有一个Mansory for lasts帖子,显示了精彩的图像和标题。

我想为每个有效图片设置一个自定义链接到不同页面(例如,第一个特色图片 - >联系页面)。

我已尝试使用下面的代码,但似乎不起作用:

<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-## -->

有人能帮帮我吗?

1 个答案:

答案 0 :(得分:0)

我认为如果你像这样使用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();直接回声但是

  

get_permalink();

将返回一个您必须手动回显的值。这就是没有打印链接的原因。

希望有所帮助,请试一试。