为什么the_permalink只回显基类?

时间:2015-03-19 18:43:49

标签: php wordpress permalinks

我在Wordpress上运行以下代码:

<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<li><?php the_permalink() ?>,<?php the_ID() ?></li>
<?php endwhile; endif; ?>

但它返回的网址不正确。例如,一个帖子可能会返回:

/disastersafety/last-minute-actions-flooding-imminent/

但是,点击后,该网址实际上是

/ibhs/ibhs-risks/ibhs-risk-flood/last-minute-actions-flooding-imminent/

如何让Wordpress回显实际正确的URL?

0 个答案:

没有答案