douba2705 2016-06-27 11:23
浏览 25
已采纳

将get_posts循环与另一个数组相结合,并按日期随机排序

I have a page I am building in WordPress which includes tweets by the Twitter API and then a standard get_posts loop.

At the moment they are displaying one after the other but I wish to create a masonry style grid which includes both.

Is there a way to output both arrays in between each other by date so the items are broken up instead of it outputting tweets first then the posts?

Here is my code.

$twitter = new TwitterAPIExchange($settings);

$string = json_decode($twitter->setGetfield($getfield)
             ->buildOauth($url, $requestMethod)
             ->performRequest(),$assoc = TRUE);

echo '<div class="funny-grid">';
echo '<div class="grid-sizer"></div>';
foreach($string as $items)
    {
    $string = $items['text'];
    $regex = "@(https?://([-\w\.]+[-\w])+(:\d+)?(/([\w/_\.#-]*(\?\S+)?[^\.\s])?)?)@";

    echo '<div class="grid-item tweet ">';
        echo '<i class="fa fa-lg fa-twitter inverse" aria-hidden="true"></i>';
        echo '<div class="tweet-text">' . preg_replace($regex, ' ', $string) . '</div>' ."<br />";
        echo '<div class="tweet-user">' . '@' . '<a href="http://www.twitter.com/' . $items['user']['screen_name'] . '">' . $items['user']['screen_name'] . '</a>' . '</div>';
        echo '<div class="tweet-date">' . $items['created_at'] . '</div>' . "<br />";

    echo '</div>';
    }

    //counts the amount of items in the array.
    /*echo "Number of items:" . count($string);*/
?>
<!--<div style="clear: both;"></div>-->

            <?php 
        query_posts('post_type=funny_wall &posts_per_page=8');
        if(have_posts()):while(have_Posts()):the_post();
         $img = wp_get_attachment_url(get_post_thumbnail_id($post->ID), "full");?>
            <div class="grid-item image">
                <div class="as">
                <img src="<?php echo $img ; ?>">
                    <a href="<?php the_permalink();?>">
                    </a>            
                </div>                                  
            </div>  

            <?php
            endwhile;
            endif;
            wp_reset_query();
            ?>

        </div>
        </div>
  • 写回答

1条回答 默认 最新

  • dr2898 2016-06-27 12:13
    关注

    Instead of echoing the results directly, you could put them into an array, and then use shuffle() to randomise before outputting it in one go.

    e.g.: tweets

    $grid_items[] =  '<div class="grid-item tweet ">
        <i class="fa fa-lg fa-twitter inverse" aria-hidden="true"></i>
        <div class="tweet-text">' . preg_replace($regex, ' ', $string) . '</div>' .'<br />
        <div class="tweet-user">' . '@' . '<a href="http://www.twitter.com/' . $items['user']['screen_name'] . '">' . $items['user']['screen_name'] . '</a>' . '</div>
        <div class="tweet-date">' . $items['created_at'] . '</div>' . '<br />
        </div>';
    

    posts:

    $grid_items[] = "<div class='grid-item image'>
                <div class='as'>
                <img src=".$img.">
                    <a href=".the_permalink().">
                    </a>            
                </div>                                  
            </div>";
    

    then use:

    shuffle($grid_items);
    foreach($grid_items as $grid_item){
        echo $grid_item;
    }
    

    when you want to output them.

    http://php.net/manual/en/function.shuffle.php

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题
  • ¥20 RL+GNN解决人员排班问题时梯度消失
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗