下面是我的循环:
<?php if (have_posts()):
// This function belowm is responsible for iterating through the posts
while (have_posts()): the_post(); ?>
<div class="col-md-4">
<h3><?php the_title(); ?></h3>
<?php the_content(); ?>
<?php wp_link_pages(); ?>
<?php get_post_permalink(); ?>
<?php edit_post_link(); ?>
</div>
<?php
endwhile; ?>
<?php
endif; ?>
Run Code Online (Sandbox Code Playgroud)
Get<?php get_post_permalink(); ?>应该显示链接,但这就是正在呈现的内容。它不显示帖子的永久链接