如何从帖子标题链接中删除页面标题?

时间:2017-10-04 10:35:06

标签: php wordpress

我一直在玩php以尝试获取帖子标题以链接到正确的帖子,但现在它不断添加页面名称。

<h6><a href="<?php the_permalink($this_post->ID); ?>" title="<?php 
the_title(); ?>"><?php the_title($this_post->post_title); ?></a></h6>

以下是该页面的链接,以便您可以正确理解我的意思 - http://www.city-perks.co.uk/discounts/

1 个答案:

答案 0 :(得分:0)

试试此代码

<?php
     if ($cmb_listing_layout == '3') 
     { 
         sprintf('<h6>%s</h6>', esc_attr($this_post->ID)); 
     } 
?>

如果您想获得另一页的标题,则需要使用get_the_title( $id_page )函数。