我無法在WordPress功能中顯示標題鏈接。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>';
它會顯示標題,但不會顯示爲鏈接。
任何想法?您的幫助將不勝感激。
Thnx!
@cale_b你的答案是正確的patially。我在編輯過程中遇到過雙引號,但是有些時候我忘了將它們放回原處。這是正確的答案:http://stackoverflow.com/a/22182574/742030 – CelticParser