değerli kardeşim siz bir yapabilirmisiniz.
<head>
<style>
#son {
background: rgb(210, 255, 131) ;
width: 700px;
padding: 10px;
border-radius: 20px;
color: rgb(0, 31, 255);
font-size: 17px;
font-family: comic sans-serif;
}
a:link {color: rgb(112, 112, 112);} /* unvisited link */
a:visited {rgb(112, 112, 112);} /* visited link */
a:hover {color:#FF00FF;} /* mouse over link */
a:active {rgb(112, 112, 112);} /* selected link */
#baslik {
margin: 0;
}
</style>
<?php
if (! isset($wp_did_header)):
if ( !file_exists( dirname(__FILE__) . '/wp-config.php') ) {
if (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false) $path = '';
else $path = 'wp-admin/';
require_once( dirname(__FILE__) . '/wp-includes/classes.php');
require_once( dirname(__FILE__) . '/wp-includes/functions.php');
require_once( dirname(__FILE__) . '/wp-includes/plugin.php');
wp_die("wp-config.php dosyasinin olup olmadigini kontrol ediniz.");
}
$wp_did_header = true;
require_once( dirname(__FILE__) . '/wp-config.php');
wp();
gzip_compression();
require_once(ABSPATH . WPINC . '/template-loader.php');
query_posts('showposts=10');
endif;
?>
<div id="son">
<div id="baslik"></div>
<marquee><?php while (have_posts ()): the_post(); ?>
<a target="_blank" href="<?php the_permalink(); ?>"> <?php the_title(); ?> - </a>
<?php endwhile; ?></marquee></div>Bu şekilde eklerseniz sağdan sola kayar. Css ayarlarınızı sitenize göre ayarlayabilirsiniz.