• 06-05-2013, 10:47:09
    #1
    Yazılara öne çıkarılmış görsel eklemek istiyorum fakat bir türlü olmadı yaptığımda. Direk veritabanı na öne çıkarılmış resmi nasıl atarım.
  • 06-05-2013, 15:25:59
    #2
    Aşağıdaki kodları dener misiniz. functions.php içine ekleyiniz.Tema dosyalarınızdaki functions.php dosyasını Not Defteri veya benzeri bir yazılımla açın. En alt satırdaki ?> kodundan önce 1 satır boşluk açın ve aşağıdaki kodu ekleyin:

    function autoset_featured() {
              global $post;
              $already_has_thumb = has_post_thumbnail($post->ID);
                  if (!$already_has_thumb)  {
                  $attached_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" );
                              if ($attached_image) {
                                    foreach ($attached_image as $attachment_id => $attachment) {
                                    set_post_thumbnail($post->ID, $attachment_id);
                                    }
                               }
                            }
          }  //end function
    add_action('the_post', 'autoset_featured');
    add_action('save_post', 'autoset_featured');
    add_action('draft_to_publish', 'autoset_featured');
    add_action('new_to_publish', 'autoset_featured');
    add_action('pending_to_publish', 'autoset_featured');
    add_action('future_to_publish', 'autoset_featured');
    Eğer Sonuç alamazsanız;

    functions.php dosyamızı açıyoruz ve aşağıdaki kodu buluyoruz.

    <?php
    Hemen bu kodun altına aşağıdaki kodu ekliyoruz.

    add_theme_support('post-thumbnails');
    Bu şekilde de sonuç alamazsanız bilgilerinizi gönderin kontrol edelim.

    Saygılarımla.
  • 06-05-2013, 17:47:55
    #3
    Turkyorumcu adlı üyeden alıntı: mesajı görüntüle
    Aşağıdaki kodları dener misiniz. functions.php içine ekleyiniz.Tema dosyalarınızdaki functions.php dosyasını Not Defteri veya benzeri bir yazılımla açın. En alt satırdaki ?> kodundan önce 1 satır boşluk açın ve aşağıdaki kodu ekleyin:

    function autoset_featured() {
              global $post;
              $already_has_thumb = has_post_thumbnail($post->ID);
                  if (!$already_has_thumb)  {
                  $attached_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" );
                              if ($attached_image) {
                                    foreach ($attached_image as $attachment_id => $attachment) {
                                    set_post_thumbnail($post->ID, $attachment_id);
                                    }
                               }
                            }
          }  //end function
    add_action('the_post', 'autoset_featured');
    add_action('save_post', 'autoset_featured');
    add_action('draft_to_publish', 'autoset_featured');
    add_action('new_to_publish', 'autoset_featured');
    add_action('pending_to_publish', 'autoset_featured');
    add_action('future_to_publish', 'autoset_featured');
    Eğer Sonuç alamazsanız;

    functions.php dosyamızı açıyoruz ve aşağıdaki kodu buluyoruz.

    <?php
    Hemen bu kodun altına aşağıdaki kodu ekliyoruz.

    add_theme_support('post-thumbnails');
    Bu şekilde de sonuç alamazsanız bilgilerinizi gönderin kontrol edelim.

    Saygılarımla.


    hocam alternatif herşeyi denedim olmamıştı.

    biraz kodla kılıfına uydurdum sorun çözüldü teşekkürler.