我有一個循環,我用它來顯示新聞類別的帖子,如果我點擊標題,縮略圖和閱讀更多,它應該能夠指引我到相對帖子。永久鏈接去404頁
我的循環如下所示:
<?php
$args = array(
'post_type' => 'post',
'posts_per_page' => 3,
'category_name' => 'news'
);
$query = new WP_Query($args);
while($query->have_posts()) : $query->the_post();
?>
<div class="news_box_content">
<h5><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
<figure><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a></figure>
<?php if($post->post_excerpt) { ?>
<p><?php echo substr(get_the_excerpt(), 0,300); ?></p>
<a href="<?php the_permalink(); ?>">Read more...</a>
<?php } else {
echo get_excerpt();
} ?>
</div>
<?php endwhile; wp_reset_postdata(); ?>
所有作品,除了閱讀更多鏈接罰款。
問題是,當我點擊閱讀更多內容時,它會將我引導至404頁面而不是帖子內容。
我該如何解決這個問題?
在標題工程中的永久鏈接佩爾利? – Exprator
是的,它工作正常 –