• 11-01-2013, 13:55:45
    #1
    Selamun aleyküm arkadaşlar http://www.web2feel.com/shuttershot/ teması kullanıyorum öne çıkarılan görseli kaldırmak istiyorum bunu nasıl yapabilirim
  • 11-01-2013, 14:17:29
    #2
    Öne çıkan görseli kaldırıp ne yapacaksınız hocam onun yerine başka alternatifler mi düşünüyorsunuz? Çünkü görselin kaldırılması demek çoğu yerde küçük resimlerinizin görünmemesine neden olabilir
  • 11-01-2013, 15:32:07
    #3
    http://www.manas.gen.tr/category/video video paylaşırken böyle çok kötü duruyor ben sadece kategoriye girilince videonun çıkmasını istiyorum
  • 11-01-2013, 15:33:51
    #4
    Bilgileri PM ile alayım hocam bir bakayım kodlara.
  • 11-01-2013, 15:54:06
    #5
    hangi kodlara bakmanız lazım kodları göndereyim
  • 11-01-2013, 15:55:48
    #6
    Hangi dosyalar mevcut? Görünüm > Düzenleyici'de sağda bulunan dosya isimlerini buraya yazar mısınız? Veya bir ekran görüntüsü. Ona göre hangi dosyayı istediğimi belirteyim.
  • 11-01-2013, 15:58:11
    #7
    Şablonlar
    404 Şablon
    (404.php)
    Arşivler
    (archive.php)
    Blog sayfa şablonu
    (blog.php)
    Ana İndeks Şablonu
    (cache/index.php)
    Yorumlar
    (comments.php)
    Alt Kısım
    (footer.php)
    Fullpage sayfa şablonu
    (fullpage.php)
    Tema İşlevleri
    (functions.php)
    guide.php
    Üst Kısım
    (header.php)
    Ana İndeks Şablonu
    (index.php)
    metabox.php
    Sayfa Şablonu
    (page.php)
    Arama Sonuçları
    (search.php)
    Arama Formu
    (searchform.php)
    Yan Menü
    (sidebar.php)
    Tekil Yazı
    (single.php)
    slider.php
    sponsors.php
    theme_options.php
    timthumb.php
    twitter.php
    Stiller
    Stil dosyası
    (style.css)
    supersized.css

    dosya isimleri bunlar kardeş
  • 11-01-2013, 16:00:23
    #8
    page.php ve single.php alayım...
  • 11-01-2013, 16:01:59
    #9
    page.php

    Alıntı
    <?php get_header(); ?>


    <div id="casing">
    <div class="incasing">

    <div class="topbar">

    <?php include (TEMPLATEPATH . '/searchform.php'); ?>
    </div>

    <div id="content">
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>

    <div class="post" id="post-<?php the_ID(); ?>">

    <div class="title">
    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
    </div>


    <div class="entry">
    <?php the_content('Read the rest of this entry &raquo;'); ?>
    <div class="clear"></div>

    </div>
    </div>

    <?php endwhile; else: ?>

    <h1 class="title">Not Found</h1>
    <p>I'm Sorry, you are looking for something that is not here. Try a different search.</p>

    <?php endif; ?>

    </div>

    <?php get_sidebar(); ?>
    <div class="clear"></div>

    </div>

    <div class="clear"></div>
    </div>
    <?php get_footer(); ?>

    single.php

    Alıntı
    <?php get_header(); ?>


    <div id="casing">
    <div class="incasing">

    <div class="topbar">
    <div class="subhead"><h1><?php previous_post('&laquo; %', 'Previous Post', 'no'); ?>
    | <?php next_post('% &raquo; ', 'Next Post', 'no'); ?> </h1></div>
    <?php include (TEMPLATEPATH . '/searchform.php'); ?>
    </div>

    <div id="content">
    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>

    <div class="post" id="post-<?php the_ID(); ?>">

    <div class="title">
    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
    </div>

    <div class="postmeta">
    <span class="author">Posted by <?php the_author(); ?> </span> <span class="clock"> <?php the_time('M - j - Y'); ?></span> <span class="comm"><?php comments_popup_link('0 Comment', '1 Comment', '% Comments'); ?></span>
    </div>

    <div class="entry">
    <?php the_content('Read the rest of this entry &raquo;'); ?>
    <div class="clear"></div>
    <?php wp_link_pages(array('before' => '<p><strong>Pages: </strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
    </div>

    <div class="singleinfo">
    <span class="category">Categories: <?php the_category(', '); ?> </span>
    </div>

    </div>
    <?php comments_template(); ?>
    <?php endwhile; else: ?>

    <h1 class="title">Not Found</h1>
    <p>I'm Sorry, you are looking for something that is not here. Try a different search.</p>

    <?php endif; ?>

    </div>

    <?php get_sidebar(); ?>
    <div class="clear"></div>

    </div>

    <div class="clear"></div>
    </div>
    <?php get_footer(); ?>