小编Jus*_*tin的帖子

如何在循环中获取当前 WordPress 帖子的链接?

下面是我的循环:

<?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(); ?>应该显示链接,但这就是正在呈现的内容。它不显示帖子的永久链接

在此输入图像描述

php wordpress

1
推荐指数
1
解决办法
6896
查看次数

标签 统计

php ×1

wordpress ×1