gpt4 book ai didi

php - WordPress:如何将 the_title 显示为链接

转载 作者:可可西里 更新时间:2023-11-01 00:21:13 26 4
gpt4 key购买 nike

我无法在 WordPress 函数中将标题显示为链接。

如果我这样编码:

function my_popular_posts($count) {
$query = new WP_Query( array(
'orderby' => 'comment_count',
'order' => 'DESC',
'posts_per_page' => $count));
if($query->have_posts()) {
echo '<ul>';
while($query->have_posts()) : $query->the_post();
**THIS LINE --> echo '<li><a href='.get_permalink().'> .the_title(). </a></li>';
endwhile;
echo '</ul>';
} else {
echo "<p>No popular posts found<p>";
}
}

在运行时,链接显示为“.the_title()”

如果我这样编码:

echo '<li><a href='.get_permalink().'>'.the_title().'</a></li>';

它会显示标题,但不会显示为链接。

有什么想法吗?您的帮助将不胜感激。

谢谢!

最佳答案

the_title 输出内容本身。您需要使用返回内容的 get_the_title()

试试这个:

echo '<li><a href="' . get_permalink() . '">' . get_the_title() . '</a></li>';

关于php - WordPress:如何将 the_title 显示为链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22182460/

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