我們在使用 WordPress 建站的過程當中,有時發現某個分類下只有一篇文章,整個頁面看起來不協調,我們希望不顯示列表頁面,直接跳轉到該文章的具體頁面。下面介紹一下實現的方法。
切換到網站模板目錄,打開 functions.php 文件,加入以下代碼便可以實現。
function stf_redirect_to_post(){
global $wp_query;
// If there is one post on archive page
if( is_archive() && $wp_query->post_count == 1 ){
// Setup post data
the_post();
// Get permalink
$post_url = get_permalink();
// Redirect to post page
wp_redirect( $post_url );
}
}
add_action('template_redirect', 'stf_redirect_to_post');