'; the_post_thumbnail(); ech-6ren">
gpt4 book ai didi

php - Wordpress - 获取帖子的链接

转载 作者:行者123 更新时间:2023-12-05 08:24:09 24 4
gpt4 key购买 nike

我想显示帖子的缩略图。如果用户单击缩略图,他将被定向到该帖子。但是单击它时出现 403 错误。我是 php 新手,怎么了?

PHP

<?php
query_posts('cat=5');
while (have_posts()) : the_post();

the_title();

echo '<a href="<?php the_permalink();?>">';
the_post_thumbnail();
echo '</a>';
endwhile;
?>

最佳答案

<?php the_permalink();?>

显示当前正在 The Loop 中处理的帖子的永久链接的 URL。此标签必须在 The Loop 内,通常用于在显示帖子时显示每个帖子的固定链接。由于此模板标记仅限于显示正在处理的帖子的永久链接,因此您不能使用它来显示指向博客上任意帖子的永久链接。如果你想获得帖子的永久链接,请引用 get_permalink(),给定它的唯一帖子 ID。

<?php echo get_permalink(1); ?>

http://codex.wordpress.org/Function_Reference/the_permalink

关于php - Wordpress - 获取帖子的链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20848216/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com