0

このコードloop-ad_listing.phpは、すべての投稿結果をリストに表示するものです。しかし今、注目の投稿を非注目の投稿の上に置きたいです (順序 = 注目、次に非注目)。注目の投稿が最初に表示されるようにするには、このコードにどのコードを入れる必要がありますか?

どんな助けでも感謝します:)

 <?php if ( have_posts() ) : ?>

<div id="page-<?php echo $paged ?>">


    <?php while ( have_posts() ) : the_post(); ?>

        <?php
        if ( get_post_meta($post->ID, 'location', true) )
            $make_address = get_post_meta($post->ID, 'location', true);
        else
            $make_address = get_post_meta($post->ID, 'cp_street', true) . '&nbsp;' . get_post_meta($post->ID, 'cp_city', true) . '&nbsp;' . get_post_meta($post->ID, 'cp_state', true) . '&nbsp;' . get_post_meta($post->ID, 'cp_zipcode', true);
        ?>

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

            <div class="post-block">
                <?php if ( is_sticky() ) echo '<strong>FEATURED</strong>'; ?>

             <div class="grid_100">
             <?php if ( get_option('cp_ad_images') == 'yes' ) cp_ad_loop_thumbnail(); ?>

                <h3 class="post-title"><a href="<?php the_permalink(); ?>"><?php if ( mb_strlen( get_the_title() ) >= 75 ) echo mb_substr( get_the_title(), 0, 75 ).'...'; else the_title(); ?></a></h3>
        </div>
        <div class="post-desc">
        <?php echo $make_address; ?>
                    <div class="post-debug">

                        <!--<h4>Description:</h4>
                        <?php echo cp_get_content_preview( 160 ); ?>--!>
                    </div>
                </div>
            </div><!-- /post-block -->
        </div><!-- /post-wrapper -->

    <?php endwhile; ?>

</div><!-- /page --> 

<?php else: ?>

    <div class="block"><center>Sorry, no results found...</center></div>

<?php endif; ?>
4

2 に答える 2

0
<?php 
<!-- display all post (exclude non-sticky post) -->
query_posts(array("post__in"=>get_option("sticky_posts")));

if ( have_posts() ) : ?>

<div id="page-<?php echo $paged ?>">


<?php while ( have_posts() ) : the_post(); ?>

    <?php
    if ( get_post_meta($post->ID, 'location', true) )
        $make_address = get_post_meta($post->ID, 'location', true);
    else
        $make_address = get_post_meta($post->ID, 'cp_street', true) . '&nbsp;' . get_post_meta($post->ID, 'cp_city', true) . '&nbsp;' . get_post_meta($post->ID, 'cp_state', true) . '&nbsp;' . get_post_meta($post->ID, 'cp_zipcode', true);
    ?>

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

        <div class="post-block">
          <?php echo '<strong>FEATURED</strong>'; ?>
          <div class="grid_100">
          <?php if ( get_option('cp_ad_images') == 'yes' ) cp_ad_loop_thumbnail(); ?>

            <h3 class="post-title"><a href="<?php the_permalink(); ?>"><?php if ( mb_strlen( get_the_title() ) >= 75 ) echo mb_substr( get_the_title(), 0, 75 ).'...'; else the_title(); ?></a></h3>
          </div>

          <div class="post-desc">
          <?php echo $make_address; ?>
            <div class="post-debug">
              <!--<h4>Description:</h4>
              <?php echo cp_get_content_preview( 160 ); ?>--!>
            </div>
          </div>
        </div><!-- /post-block -->
    </div><!-- /post-wrapper -->

<?php endwhile; ?>

</div><!-- /page --> 

<?php endif; ?>    
<?php 
<!-- display all post (exclude non-sticky post) -->
query_posts(array("post__not_in"=>get_option("sticky_posts")));

if ( have_posts() ) : ?>

<div id="page-<?php echo $paged ?>">


<?php while ( have_posts() ) : the_post(); ?>

    <?php
    if ( get_post_meta($post->ID, 'location', true) )
        $make_address = get_post_meta($post->ID, 'location', true);
    else
        $make_address = get_post_meta($post->ID, 'cp_street', true) . '&nbsp;' . get_post_meta($post->ID, 'cp_city', true) . '&nbsp;' . get_post_meta($post->ID, 'cp_state', true) . '&nbsp;' . get_post_meta($post->ID, 'cp_zipcode', true);
    ?>

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

        <div class="post-block">

          <div class="grid_100">
          <?php if ( get_option('cp_ad_images') == 'yes' ) cp_ad_loop_thumbnail(); ?>

            <h3 class="post-title"><a href="<?php the_permalink(); ?>"><?php if ( mb_strlen( get_the_title() ) >= 75 ) echo mb_substr( get_the_title(), 0, 75 ).'...'; else the_title(); ?></a></h3>
          </div>

          <div class="post-desc">
          <?php echo $make_address; ?>
            <div class="post-debug">
              <!--<h4>Description:</h4>
              <?php echo cp_get_content_preview( 160 ); ?>--!>
            </div>
          </div>
        </div><!-- /post-block -->
    </div><!-- /post-wrapper -->

<?php endwhile; ?>

</div><!-- /page --> 

<?php else: ?>

<div class="block"><center>Sorry, no results found...</center></div>

<?php endif; ?>
于 2013-05-23T02:25:44.280 に答える
0

指定した を使用してquery_posts()ループの前に使用できます。これは、注目されていない投稿には が設定されていないことを前提としています。orderbymeta_valuemeta_keycp_ad_featured_thumbnail

<?php
$args = array( "orderby"=>"meta_value", "meta_key"=>"cp_ad_featured_thumbnail" );
query_posts( $args );
?>
<?php if ( have_posts() ) : ?> 
<div id="page-<?php echo $paged ?>"> 
<?php while ( have_posts() ) : the_post(); ?>
    <!-- POST CONTENT -->
<?php endwhile; endif; ?>
于 2013-05-20T17:52:26.640 に答える