我在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?