XPressME Integration Kit

Trac


Ignore:
Timestamp:
Nov 20, 2009, 2:52:16 PM (14 years ago)
Author:
toemon
Message:

MUブランチにVer2.2.0RC1の変更内容をマージ

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/XPressMU/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/recent_posts_content_block_theme.php

    r425 r451  
    11<?php 
    2 //if( ! defined( 'XOOPS_ROOT_PATH' ) ) exit ; 
    3  
     2// Block Version: 1.0 
    43function recent_posts_content_block($options) 
    54{ 
    65        $mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ; 
    76        $this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_recent_posts_content_block.html' : trim( $options[1] ); 
    8         $day_select = ($options[2])?intval($options[2]):0; 
    9         $day_size = ($options[3])?intval($options[3]):0; 
    10         $disp_count =  ($options[4])?intval($options[4]):10; 
    11         $excerpt = empty( $options[5] ) ? false : true ; 
    12         $excerpt_size =  ($options[6])?intval($options[6]):100; 
    13         $date_format = empty( $options[7] ) ? '' : $options[7] ; 
    14         $time_format = empty( $options[8] ) ? '' : $options[8] ; 
    15         $tag_select = $options[9] ; 
    16     $selected = array_slice($options,10); // get allowed cats 
    17  
     7        $disp_count =  ($options[2])?intval($options[2]):10; 
     8        $excerpt = empty( $options[3] ) ? false : true ; 
     9        $excerpt_size =  ($options[4])?intval($options[4]):100; 
     10        $date_format = empty( $options[5] ) ? '' : $options[5] ; 
     11        $time_format = empty( $options[6] ) ? '' : $options[6] ; 
     12        $tag_select = $options[7] ; 
     13        $cat_select = empty( $options[8] ) ? '0' : $options[8] ; 
     14        $day_select = ($options[9])?intval($options[9]):0; 
     15        $day_size = ($options[10])?intval($options[10]):0; 
     16 
     17        $selected = explode(',' , $cat_select); 
     18         
    1819        $mydirpath = get_xpress_dir_path(); 
    1920         
     
    2122        if (empty($time_format)) $time_format = get_settings('time_format'); 
    2223        if(empty($tag_select)) $tag_where = ''; else $tag_where = "tag='$tag_select'&"; 
    23          
     24        if (array_search(0,$selected)===0) $cat_select = 0; 
     25 
    2426        $selected_author_id = xpress_selected_author_id('echo=0');       
    2527        if (!empty($selected_author_id)){ 
     
    3739        if (!is_null($wpdb)){ 
    3840                $wp_query->in_the_loop = true;          //for use the_tags() in multi lopp  
    39                 if (array_search(0,$selected)===0) { 
     41                if ($cat_select) { 
     42                        $r = new WP_Query($author_where . $tag_where ."cat=$cat_select&showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish"); 
     43                } else { 
    4044                        $r = new WP_Query($author_where . $tag_where ."showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish"); 
    41                 } else { 
    42                         $cat_id = implode(',',$selected); 
    43                         $r = new WP_Query($author_where . $tag_where ."cat=$cat_id&showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish"); 
    4445                } 
    4546                while($r->have_posts()){                         
     
    5253                        if ($day_select == 2){ 
    5354                                $post_date = mktime (0, 0, 0, get_the_time("m"), get_the_time("d"), get_the_time("Y")); 
    54                                 if (empty($lastes_date)) $lastes_date = $post_date; 
    55                                 $base_date = $lastes_date - $between_days; 
     55                                if (empty($latest_date)) $latest_date = $post_date; 
     56                                $base_date = $latest_date - $between_days; 
    5657                                if ($post_date < $base_date) continue; 
    5758                        } 
Note: See TracChangeset for help on using the changeset viewer.