Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Someone
Monday, October 1st, 2007 at 11:25:59pm MDT 

  1. 1
  2.  
  3.  
  4. <h1>Recent Enteries</h1>
  5. <div class="submenu">
  6.         <ul>
  7.                 <?php query_posts('showposts=5'); ?>
  8.                         <?php while (have_posts()) : the_post(); ?>
  9.                         <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent link to'); ?> <?php the_title(); ?>"><?php the_title(); ?></a> - <?php the_time('m-d-Y') ?></li>
  10.                 <?php endwhile;?>
  11.         </ul>
  12.  
  13.  
  14. 2
  15.  
  16.  
  17. <h1><?php _e('Categories'); ?></h1>
  18. <div class="submenu">
  19.       <ul>
  20.         <?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
  21.       </ul>
  22.  
  23.  
  24. 3
  25.  
  26.  
  27. <h1>Pages</h1>
  28.       <ul>
  29.         <?php wp_list_pages('title_li='); ?>
  30.       </ul>
  31.  
  32. yada
  33.  
  34.  
  35. <?php wp_list_pages('title_li=' . __('Sayfalar:')); ?>
  36.  
  37.  
  38. 4
  39.  
  40.  
  41. <h2><?php _e('Son Yorumlar'); ?></h2>
  42.  
  43.       <?php if (function_exists('get_recent_comments')) { ?>
  44.       <?php get_recent_comments(); ?>
  45.       <?php } ?>
  46.  
  47.  
  48. 5
  49.  
  50.  
  51. <?php wp_get_archives('type=postbypost&limit=6'); ?>
  52.  
  53.  
  54. 6
  55.  
  56.  
  57. <h2>Arşiv</h2>
  58. <ul class="counts">
  59. <?php wp_get_archives('type=monthly&limit=12&show_post_count=1'); ?>
  60. </ul>
  61.  
  62.  
  63. yada
  64.  
  65.  
  66.  </li>
  67.  <li id="archives"><?php _e('Arşivler:'); ?>
  68.         <ul>
  69.          <?php wp_get_archives('type=monthly'); ?>
  70.         </ul>
  71.  
  72.  
  73. 7
  74.  
  75.  
  76. <h2>Takvim</h2>
  77. <?php get_calendar(2); ?>
  78.  
  79.  
  80. 8
  81.  
  82.  
  83. <?php wp_list_categories('title_li=' . __('Kategoriler:')); ?>
  84.  
  85.  
  86. 9
  87.  
  88.  
  89. <h4>Yazı Bilgileri:</h4>
  90. <div class="about-entry">
  91. <?php the_time('j F Y l') ?> günü, <?php the_time() ?> gibi <?php the_category(', ') ?> kategorisinde  yayınlanmış, <?php comments_rss_link('RSS 2.0'); ?> ile takip edebilir, <a href="#respond">yorum bırakabilir</a> yada <a href="<?php trackback_url(display); ?>">geri izleme</a> ile siteniz üzerinden takip edebilirsiniz.
  92.  
  93.  
  94. yada
  95.  
  96.  
  97.                                         <small>
  98.                                                 Bu yazı
  99.                                                 <?php /* This is commented, because it requires a little adjusting sometimes.
  100.                                                         You'll need to download this plugin, and follow the instructions:
  101.                                                         http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */
  102.                                                         /* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?>
  103.                                                 <?php the_time('l, d F Y') ?>, <?php the_time() ?> tarihinde
  104.                                                 <?php the_category(', ') ?> kategorisi altında yayınlandı.
  105.                                                 Bu yazıya yapılacak yorumlardan haberdar olmak için <?php comments_rss_link('RSS 2.0'); ?> beslemesini kullanabilirsiniz.
  106.  
  107.                                                 <?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
  108.                                                         // Both Comments and Pings are open ?>
  109.                                                         <a href="#respond">Yorum yapabilirsiniz</a>, veya kendi sitenizden <a href="<?php trackback_url(); ?>" rel="trackback">geri izleme</a> yapabilirsiniz.
  110.  
  111.                                                 <?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
  112.                                                         // Only Pings are Open ?>
  113.                                                         Yorum yapma şimdilik kapalı, fakat kendi sitenizden <a href="<?php trackback_url(); ?> " rel="trackback">geri izleme</a> yapabilirsiniz.
  114.  
  115.                                                 <?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
  116.                                                         // Comments are open, Pings are not ?>
  117.                                                         Sona gidip yorum yapabilirsiniz. Pingleme şimdilik kapalı.
  118.  
  119.                                                 <?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
  120.                                                         // Neither Comments, nor Pings are open ?>
  121.                                                         Yorum yapma ve pingleme kapalı.
  122.  
  123.                                                 <?php } edit_post_link('Yazıyı düzenleyin.','',''); ?>
  124.  
  125.                                         </small>
  126.  
  127.  
  128. 10
  129.  
  130.  
  131. <h2><a href="<?php the_permalink() ?>" rel="kalıcı bağlantı"><?php the_title(); ?></a></h2><?php the_author(); ?> <?php the_time('j F Y'); ?> tarihinde<?php _e(","); ?> <?php the_category(',') ?> kategorisinde yazmış.
  132.  
  133.  
  134. 11
  135.  
  136.  
  137. <?php wp_list_bookmarks('title_after=&title_before='); ?>
  138.  
  139.  
  140. 12
  141.  
  142.  
  143. <ul>
  144. <?php wp_register(); ?>
  145. <li><?php wp_loginout(); ?></li>
  146. <li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('RSS ile siteye abone olun'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
  147. <li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('Yazılara yapılan son yorumlar için RSS'); ?>"><?php _e('Yorumlar <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
  148. <li><a href="http://validator.w3.org/check/referer" title="<?php _e('Bu sayfa XHTML 1.0 Transitional olarak geçerli'); ?>"><?php _e('Geçerli <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'); ?></a></li>
  149. <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
  150. <li><a href="http://wordpress.org/" title="<?php _e('Altyapı WordPress, kişisel yayınlama platformu.'); ?>"><abbr title="WordPress">WP</abbr></a></li>
  151. <?php wp_meta(); ?>
  152. </ul>
  153. </li>
  154.  
  155.  
  156. 13
  157.  
  158.  
  159. <li><h2><?php _e('Yönetim'); ?></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ş'); ?>" 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 Panel</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&amp;redirect_to=' . $_SERVER['REQUEST_URI']; ?>"><?php _e('Çıkış'); ?></a></li></ul><?php  endif;?></div>
  160. </ul></li>
  161.  
  162.  
  163. 14
  164.  
  165.  
  166. <h2>Aramak istediğiniz kelimeyi girin:</h2>
  167. <form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
  168. <input type="text" name="s" id="s" size="55" />
  169. <input class=".button" type="submit" value="<?php _e('Search'); ?>" />
  170. </form>
  171.  
  172.  
  173. yada
  174.  
  175.  
  176.  <li id="search">
  177.    <label for="s"><?php _e('Arama Yapın:'); ?></label>
  178.    <form id="searchform" method="get" action="<?php bloginfo('home'); ?>">
  179.         <div>
  180.                 <input type="text" name="s" id="s" size="15" /><br />
  181.                 <input type="submit" value="<?php _e('Ara'); ?>" />
  182.         </div>
  183.         </form>
  184.  </li>
  185.  
  186.  
  187. 15
  188.  
  189.  
  190. <small><?php the_tags( '<p>Etiketler: ', ', ', '</p>'); ?></small>

advertising

Update the Post

Either update this post and resubmit it with changes, or make a new post.

You may also comment on this post.

update paste below
details of the post (optional)

Note: Only the paste content is required, though the following information can be useful to others.

Save name / title?

(space separated, optional)



Please note that information posted here will expire by default in one month. If you do not want it to expire, please set the expiry time above. If it is set to expire, web search engines will not be allowed to index it prior to it expiring. Items that are not marked to expire will be indexable by search engines. Be careful with your passwords. All illegal activities will be reported and any information will be handed over to the authorities, so be good.

worth-right
fantasy-obligation