我正在尝试使用常规 wp_query 列出帖子标题,只是为了将永久链接添加到项目的 a href,这是我正在使用的代码:
<?php $the_query = new WP_Query( 'post_type=artworks_post' );
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
echo '<a rel="' .the_permalink(). '" href="' .the_permalink. ' ">';
the_title();
echo '</a>';
endwhile;
// Reset Post Data
wp_reset_postdata();
?>
问题是代码不起作用,它只返回带有“永久链接”一词的a href,但没有链接本身。
我在这里做错了什么?