temanızın functions.php dosyasını açıp,
?>
etiketinden önce şu satırları ekleyin:
function print_post_title() {
global $post;
$thePostID = $post->ID;
$post_id = get_post($thePostID);
$title = $post_id->post_title;
$key = "yenilink";
$perm = get_permalink($post_id);
$customval = get_post_meta($thePostID, $key, true);
if (!empty($customval)) {
$link = $customval;
} else {
$link = $perm;
}
echo '<h2><a href="'.$link.'" rel="bookmark" title="'.$title.'">'.$title.'</a></h2>';
}daha sonra temanızın index.php dosyasını açıp, şu satırı:
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
şöyle değiştirin:
<?php print_post_title() ?>
Şimdi ana işlemleri yaptık. Artık tek yapmanız gereken, dış bağlantı vermek istediğiniz bir yazıda, özel alanlarda "yenilink" adıyla bir özel alan oluşturup, içine dış bağlantı adresini yazmak.