Etiket Arşivi ‘meta’

22 Ocak 2008

Anasayafada Giriş Paneli

Kullanıcıların blogunuza anasayfanızdan giriş yapmaları için eklenti gerektirmeyen farklı bir uygulama, sadece ekteki kodları  meta kodlarınızla değiştirmeniz  yeterli olacaktır.

Kod :

<li><h2><?php _e(’Üye Paneli’); ?></h2><ul><div><?php global $user_ID, $user_identity; get_currentuserinfo(); if (!$user_ID): ?><div><form name=”loginform” id=”loginform” action=”<?php echo get_settings(’siteurl’); ?>/wp-login.php” method=”post”><ul><li><?php _e(’Username’) ?>:<br /></li><input type=”text” name=”log” id=”log” value=”" size=”22″ tabindex=”1″ /><br /><li><?php _e(’Şifre’) ?>:<br /></li><input type=”password” name=”pwd” id=”pwd” value=”" size=”14″ tabindex=”2″ /><input type=”submit” name=”submit” value=”<?php _e(’Giriş Yap’); ?>” tabindex=”3″ /><br /><input name=”rememberme” type=”checkbox” id=”rememberme” value=”forever” tabindex=”4″ /><?php _e(’Remember me’); ?><br /><br/> <?php wp_register(”, ”); ?>.<input type=”hidden” name=”redirect_to” value=”<?php echo $_SERVER['REQUEST_URI']; ?>”/></ul></form></div><?php  else:?><span class=”h3a”><?php echo $user_identity; ?></span><ul><li><a href=”<?php echo get_settings(’siteurl’); ?>/wp-admin/”>Kontrol Paneli</a></li><li><a href=”<?php echo get_settings(’siteurl’); ?>/wp-admin/post-new.php”>Yazı yaz</a></li><li><a href=”<?php echo get_settings(’siteurl’); ?>/wp-admin/profile.php”>Profil</a></li><li><a href=”<?php echo get_settings(’siteurl’) . ‘/wp-login.php?action=logout&redirect_to=’ . $_SERVER['REQUEST_URI']; ?>”><?php _e(’Çıkış’); ?></a></li></ul><?php  endif;?></div>
</ul></li>

12 Aralık 2007

Meta & Title Ayarları

Wordpress sitenizin seo sunu güçlendirmek için meta ve title ayarlarınızı aşağıdaki gibi değiştirmeniz oldukça fayda sağlayacaktır.

Temanızın header.php dosyasını açın ve kodu ekleyin ayrıca eski title kodunuda silin.

Kod:

<title>
<?php wp_title(”); ?>
<?php if(wp_title(’ ‘, false)) { echo ‘ | ‘; } ?>
<?php bloginfo(’name’); ?>
</title>
<META NAME=”Keywords” CONTENT=”<?php wp_title(”); ?>  “>
<META NAME=”Description” CONTENT=”<?php wp_title(”); ?>  “>