celalyesil adlı üyeden alıntı: mesajı görüntüle
Buda benden olsun bari Demo: http://tarifcini.net/ekle.php

Style kısmının arasındaki değişkenleri değiştirerek birşeyler çıkarabilirsin.

<head>
<style>
#son {
background: rgb(210, 255, 131) url(bg.png) repeat-x;
width: 240px;
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: 60;
}
</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=5');
endif;
 
?>
<div id="son"> 
<div id="baslik"></div>
<?php while (have_posts ()): the_post(); ?>
   <ul>
   <li>
   <a target="_blank" href="<?php the_permalink(); ?>"> <?php the_title(); ?><br></a></li></ul>
 
<?php endwhile; ?></div>
Sizede teşekkür ederiz hocam. peki siteme nasıl ekleyeceğim?