它按照我希望的方式執行,在頁面上的列中顯示某個類別的帖子。現在它只是標題,但我想鏈接該標題和永久鏈接部分不工作,或者說href。在頁面上使用允許PHP在帖子和頁面插件上使用Wordpress查詢
[php]
// The Query
$the_query = new WP_Query('cat=3');
// The Loop
if ($the_query->have_posts()) {
echo '<ul style="list-style:none;">';
while ($the_query->have_posts()) {
$the_query->the_post();
echo '<li>' . '<a href="the_permalink();">' . get_the_title() . '[/a]'. '</li>';
}
echo '</ul>';
} else {
// no posts found
}
/* Restore original Post Data */
wp_reset_postdata();
[/php]
它鏈接到subdomain.domain.com/site/the_permalink();而是拉動該帖子的永久鏈接並鏈接到該鏈接。