Ciao vorrei mettere nel menų del mio blog solo un link allora nel mio tema posso scegliere vari template da usare per le verie pagine ma č cosė
Codice PHP:
<?php
/*
Template Name: Redirect
*/
?>

<?php
/*

USAGE INSTRUCTIONS:

1. Create a new page in WordPress
2. Add a title to the page (e.g. WooThemes)
3. Add an URL to the content of the page (e.g. http://www.woothemes.com OR woothemes.com OR www.woothemes.com)
4. Select "Redirect" as the page template
5. Publish!

*/
?>

<?php if (have_posts()) : the_post(); ?>
<?php $URL
= get_the_excerpt(); if (!preg_match('/^http:\/\//', $URL)) $URL = 'http://' . $URL; ?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Refresh" content="0; url=<?php echo $URL; ?>">
</head>

<body>
</body>
</html>

<?php endif; ?>
solo che quando clicco sul link mi appare una pagina con share%20and%20enjoy e non il link che volevo.
Ditemi se sbaglio ma ho capito che devo creare una pagina con link es http://xxx.it
e basta e mettere template quello che ho postato cosa sbaglio?