• Witam wszystkich. Właśnie rozpocząłem swoją przygodę z wordpressem i postanowiłem popracować na takim themie http://wpshower.com/themes/sight/
    O ile nie miałem żadnego problemu ze zmianą: kolorów,grafiki i wielkości niektórych elementów. O tyle mam wielki (jak dla mnie) problem ze sliderem. Gdy dodaję nowy wpis i zaznaczam w opcji thema żeby wyświetlał go w sliderze, post tam jest, ale nie ma go w ostatnio dodanych.
    Jest on tylko w sliderze.
    Jak zrobić aby dodany temat z zaznaczą opcją ukazania w sliderze, pokazywał się także w ostatnio dodanych?
    Pracuję na chwilę obecną na wirtualnym serwerze.
    Aby łatwiej było wam sobie wyobrazić posłużę się przykładem
    Na tej stronie post jest w slidrzez i w ostatnio dodanych
    http://twojewlochy.pl/ „tak wiem to jest inny theme” ale chciałem pokazać o co mi chodzi.

    załączam źródło kodu slidera:

    <?php
    $args = array(
    'meta_key’ => 'sgt_slide’,
    'meta_value’ => 'on’,
    'numberposts’ => -1,
    );
    $slides = get_posts($args);

    if ( !empty($slides) ) : $exl_posts = Array(); ?>

    <div class=”slideshow”><div id=”slideshow”>

    <?php foreach( $slides as $post ) :
    setup_postdata($post);
    global $exl_posts;
    $exl_posts[] = $post->ID;
    ?>
    <div class=”slide clear”>
    <div class=”post”>
    <?php if ( has_post_thumbnail() ) echo ’’.get_the_post_thumbnail($post->ID, 'slide’,
    array(
    'alt’ => trim(strip_tags( $post->post_title )),
    'title’ => trim(strip_tags( $post->post_title )),
    )).’
    ’; ?>
    <div class=”post-category”><?php the_category(’ / ’); ?></div>
    <h2>„><?php the_title(); ?></h2>

    <div class=”post-meta”>by <span class=”post-author”>” title=”Posts by <?php the_author(); ?>”><?php the_author(); ?></span> on <span
    class=”post-date”><?php the_time(__(’M j, Y’)) ?></span> • <?php comments_popup_link(__(’No Comments’), __(’1 Comment’), __(’% Comments’), ”, __(’Comments Closed’) ); ?> <?php edit_post_link( __( 'Edit entry’), '• ’); ?></div>
    <div class=”post-content”><?php if ( has_post_thumbnail() && function_exists(’smart_excerpt’) ) smart_excerpt(get_the_excerpt(), 50); else smart_excerpt(get_the_excerpt(), 150); ?></div>
    </div>
    </div>
    <?php endforeach; ?>

    </div>



    </div>
    <?php endif; ?>

    Będę niezmiernie wdzięczny za pomoc w rozwiązaniu tego problemu.

  • Temat ‘Sight Theme, problem ze sliderem’ jest zamknięty na nowe odpowiedzi.