Edit File: prev-next.php
<?php $post = get_post(); // Önceki ve sonraki yazıları al $previous_post = get_previous_post(); $next_post = get_next_post(); // Önceki yazı başlığını al $previous_title = $previous_post ? get_the_title($previous_post) : ''; // Sonraki yazı başlığını al $next_title = $next_post ? get_the_title($next_post) : ''; // Gezinme butonları ve başlıkları ekrana yazdır the_post_navigation( array( 'prev_text' => '<h2> ' . $previous_title . '</h2>' . esc_html__('« Önceki Yazı', 'orun'), 'next_text' => '<h2> ' . $next_title . '</h2>' . esc_html__('Sonraki Yazı »', 'orun'), ) ); ?>