作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我无法在 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/
我是一名优秀的程序员,十分优秀!