Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: WordPress Featured Articles

Parašė adh· 2010 Kov. 28 19:03:07
#3

Na mano theme kaip supratau jau yra įdėtas šis pluginas (Na šiuo atveju tai Featured Photos, bet tai tas pats, rašomas kaip post'as). Taip pat yra featured.php

<div style="clear: both;"></div>
<div class="featured">
    <div id="sections">
        <ul>
            <?php $my_query = new WP_Query("category_name=Featured Articles&showposts=$artsee_homepage_featured;");
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
            <?php $thumb = get_post_meta($post->ID, 'Thumbnail', $single = true);?>
            <li style="background-image: url(<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo $thumb; ?>&amp;h=364&amp;w=655&amp;zc=1&amp;q=60);">
                <div class="sections-overlay"><a href="<?php echo $thumb; ?>" title="<?php the_title() ?>" rel="lightbox[26]"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/zoom.png" alt="zoom" class="zoom" /></a></div>
            </li>
            <?php endwhile; ?>
        </ul>
    </div>
    <div id="featured-right">
        <div id="sections2">
            <ul>
                <?php $my_query = new WP_Query("category_name=Featured Articles&showposts=$artsee_homepage_featured;");
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
                <?php $thumb = get_post_meta($post->ID, 'Thumbnail', $single = true);?>
                <li>
                    <h2 class="featured-title"><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>">
                        <?php the_title2('', '...', true, '20') ?>
                        </a></h2>
                    <div class="featured-info">Posted by
                        <?php the_author() ?>
                        |
                        <?php the_time('M jS, Y') ?>
                    </div>
                    <?php the_content_limit(250, ""); ?>
                    <a href="<?php the_permalink() ?>" class="featured-readmore">read more</a> </li>
                <?php endwhile; ?>
            </ul>
        </div>
        <div style="clear: both;"></div>
        <div id="featured-button">
            <div class="prev">
                <div class="prev-hover"> </div>
            </div>
            <div class="next">
                <div class="next-hover"></div>
            </div>
        </div>
    </div>
</div>




Redagavo adh· 2010 Kov. 28 19:03:00