bd
WM Aracı
Kullanıcı
-
Üyelik
26.10.2010
-
Yaş/Cinsiyet
34 / E
-
Meslek
2
-
Konum
Manisa
-
Ad Soyad
B** D**
-
Mesajlar
4926
-
Beğeniler
784 / 3953
-
Ticaret
18, (%100)
Evet, yapabilirsin. Aşağıdaki kodu temanın functions.php dosyasına eklemen yeterli:
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');
1 kişi bu mesajı beğendi.