Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/293.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 获取具有不同参数和元的帖子和事件_Php_Arrays_Wordpress_Sorting - Fatal编程技术网

Php 获取具有不同参数和元的帖子和事件

Php 获取具有不同参数和元的帖子和事件,php,arrays,wordpress,sorting,Php,Arrays,Wordpress,Sorting,我正在使用get_posts方法获取我的帖子和事件。但由于参数的名称不同,事件类别和类别名称或元事件结束和结束,我使用了两个参数数组和两个get_post调用。 一切正常,但我需要按元键对结果排序,因为合并了两个帖子数组,所以我得到排序的帖子和下一个排序的事件。 是否有任何选项可以对查询中所有更好的参数进行排序,或者按两个元对数组进行排序 这段代码运行良好-它返回两个按特定日期范围内给定类别的开始日期排序的数组,事件的时间以秒为单位 if($toDate != date('Y/m/d',strt

我正在使用get_posts方法获取我的帖子和事件。但由于参数的名称不同,事件类别和类别名称或元事件结束和结束,我使用了两个参数数组和两个get_post调用。 一切正常,但我需要按元键对结果排序,因为合并了两个帖子数组,所以我得到排序的帖子和下一个排序的事件。 是否有任何选项可以对查询中所有更好的参数进行排序,或者按两个元对数组进行排序

这段代码运行良好-它返回两个按特定日期范围内给定类别的开始日期排序的数组,事件的时间以秒为单位

if($toDate != date('Y/m/d',strtotime(0)))
{         
  $secondCondition =  array(
    'key' => 'event_begin',
    'value' => $toDate,
    'compare' => '<=',
    'type' => 'date'
    ); 

  $secondCondition2 =  array(
    'key' => '_start_ts',
    'value' => strtotime($toDate),
    'compare' => '<=',
    'type' => 'numeric'
    );    
}
else
{
  $secondCondition = "";
}

$query1 = array(
  'category_name' => $category,
  'order' => 'ASC',
  'orderby' => 'meta_value',
  'meta_key' => 'event_begin',
  'meta_query' => array(
    array(
    'key' => 'event_end',
    'value' => $fromDate,
    'compare' => '>=',
    'type' => 'date'
    ),
    $secondCondition  
  )   
);

$query2 = array( 
  'post_type' => 'event',
  'event-categories' => $category,
  'order' => 'ASC',
  'orderby' => 'meta_value',
  'meta_key' => '_start_ts',
  'meta_query' => array(
    array(
    'key' => '_end_ts',
    'value' => strtotime($fromDate),
    'compare' => '>=',
    'type' => 'numeric'
    ),
    $secondCondition2  
  )   
);   

$postGroup1 = get_posts( $query1);
$postGroup2= get_posts( $query2);

$mergedPosts = array_merge($postGroup1, $postGroup2);

所以我想出了合并数组排序的解决方案。代码如下所示:

function cmp($a,$b)
{
  if ($a->post_type == "event")
    $fromCmpA = get_post_meta($a->ID,"_start_ts",true);
  else
    $fromCmpA = strtotime(get_post_meta($a->ID,"event_begin",true));

  if ($b->post_type == "event")
    $fromCmpB = get_post_meta($b->ID,"_start_ts",true);
  else
    $fromCmpB = strtotime(get_post_meta($b->ID,"event_begin",true));

  if ($fromCmpA == $fromCmpB)
    return 0;
  return ($fromCmpA < $fromCmpB) ? -1 : 1;

}
以及它的用法:uasort$mergedPosts,'cmp'

但是有人知道如何在args中实现它吗