我不知道为什么,但我无法通过单击导航到帖子。我尝试了get\\u permalink()和\\u permalink(),但只更改url。我只需要看到点击后(单独)推送的帖子。有人知道我做错了什么吗?
<?php
$args = array(
\'post_type\'=> \'post\'
);
$the_query = new WP_Query( $args );
// The Loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p><?php the_content(); ?></p>
<?php
}
}
?>