如何在另一个CPT中检索自定义POST类型固定链接?

时间:2016-10-31 作者:bdtheme

我有一个元框,其中显示了名为football_player 作为下拉列表。现在我想在另一个名为football_team 模板<一切;除了permalink外,名字、形象、队号对我来说都很好。代码如下:

$home_starting_player_names = rwmb_meta( \'pb_select_players\', array( \'multiple\' => true ) ); ?>

          <?php 
           foreach ( $home_starting_player_names as $home_starting_player ){?>
            <li class ="clearfix" style="width: 100%; margin-top: 10px;">
            <aside class="starting-player-image clearfix" style="width: 100px; height: 100px;"><?php  echo get_the_post_thumbnail($home_starting_player); ?></aside>
            <aside class="starting-player-name" style="width: 100px; height: 100px; margin-left: 50px; margin-top: 20px;"><?php  echo get_the_title($home_starting_player); ?></aside>
           <aside class="starting-player-number" style="width: 100px; height: 100px;"><?php  echo get_post_meta( $home_starting_player, \'pb_squad_number\', true );?></aside>
           <aside class="team-match-centre-details">
        <div class="team-match-details" data-toggle="tooltip" data-placement="top" title="Click for details">
            <a href="<?php echo get_permalink( \'football_player\' ); ?>"><i class="fa fa-arrow-right" aria-hidden="true"></i></a>
        </div>
      </aside>

1 个回复
SO网友:bdtheme

我自己解决了这个问题:我使用了以下代码,而不是

<a href="<?php echo get_permalink( \'football_player\' ); ?>"><i class="fa fa-arrow-right" aria-hidden="true"></i></a>

I used this code:

<a href="<?php echo get_permalink( $home_starting_player ); ?>"><i class="fa fa-arrow-right" aria-hidden="true"></i></a>

相关推荐

Permalinks for pages

为什么我不能为我的pages? 我有一个4层结构,家用解决方案机械钢所以我希望我的URL结构是www.domein.com/solutions/machines/steel 但我在哪里可以做到这一点??我在4层结构中进行了所有分类。但在permalinks编辑器中,我只能选择帖子或产品。。。我觉得奇怪,我不能对我的页面做同样的事情。。。我希望这是有意义的,有人可以帮助我,谢谢!