https://t.me/RX1948
Server : Apache
System : Linux s1230 5.15.0-139-generic #149~20.04.1 SMP Tue Jul 14 11:21:49 UTC 2026 x86_64
User : p141464 ( 418825)
PHP Version : 7.4.33.12
Disable Function : NONE
Directory :  /html/wordpress-old/wp-content/plugins/wp-ui/inc/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /html/wordpress-old/wp-content/plugins/wp-ui/inc/class-wpui-posts.php
<?php
/**
 *	Script: WP UI Posts
 *	
 * 	WP UI posts handler class.
 *	
 *		
 * @since $Id$
 * @package wp-ui
 * @subpackage class-wpui-post
 **/


/**
* Class: WP UI Posts ( wpuiPosts )
* 
* See also : 
* 	<wpui>
* 
*/
class wpuiPosts
{
	private $options, $direct, $instance;
	
	
	function __construct()
	{
		$this->wpuiPosts();
	}
	
	function wpuiPosts()
	{
		$this->options = get_option( 'wpUI_options' );
		if ( ! isset( $this->options ) ) return;
	}
	
	
	/**
	 * Function: replace_tags
	 * 	returns the template string, with replaced values.
	 * 	
	 * @since 0.7
	 * 
	 * @param $template - HTML template as a string
	 * @param $needles - array with values that are to be replaced in the HTML template.
	 * 
	 * 
	 * @return string $template HTML
	 */
	function replace_tags( $template, $needles ) {
		
		if ( ! $template ) return;
		if ( ! is_array( $needles ) ) return;
		
		$template = str_ireplace( '{$title}' , $needles[ 'title' ], $template );
		$template = str_ireplace( '{$thumbnail}' , $needles[ 'thumbnail' ], $template );
		$template = str_ireplace( '{$excerpt}' , $needles[ 'excerpt' ], $template );
		
		$template = str_ireplace( '{$content}' , $needles[ 'content' ], $template );
		if ( isset( $this->options[ 'relative_times' ] ) && $this->options[ 'relative_times' ] == 'on' )
			$template = str_ireplace( '{$date}' , $this->get_relative_time($needles[ 'date' ]), $template );
		else
			$template = str_ireplace( '{$date}' , $needles[ 'date' ], $template );
			
		$template = str_ireplace( '{$url}' , $needles[ 'url' ], $template );		
		$template = str_ireplace( '{$author}' , $needles[ 'author' ], $template );
		$author_posts_link = '<a href="' . get_author_posts_url( $needles[ 'author' ] ) . '" target="_blank" />' . $needles[ 'author' ] . '</a>';
		$template = str_ireplace( '{$author_posts_link}', $author_posts_link, $template );
		$first_cat = explode( ', ', $needles[ 'meta' ]['cat'] );
		$first_cat = $first_cat[ 0 ];
		
		$template = str_ireplace( '{$cats}', $needles[ 'meta' ][ 'cat' ], $template );
		$template = str_ireplace( '{$cat}', $first_cat,  $template );
		$template = str_ireplace( '{$tags}', $needles[ 'meta' ][ 'tag' ], $template );
		$template = str_ireplace( '{$num_comments}', $needles[ 'meta' ][ 'comments' ], $template );
	
		return $template;		
	} // END method replace_tags



	
	/**
	 * Function: get_excerpt
	 * 
	 * Generate excerpt.
	 * 
	 * @since 0.7
	 * 
	 * @param $text to be trimmed.
	 * @param $length to trim.
	 * @return $text trimmed content
	 */
	function get_excerpt( $text, $length ) {
		$text = apply_filters( 'the_content' , $text );
		$text = str_replace( '\]\]\>', ']]&gt;', $text );
		$text = preg_replace( '@<script[^>]*?>.*?</script>@si', '', $text );
		$text = strip_tags( $text, '<p><ul><ol><li><img/><h2><h3>' );
		
		if ( ! is_int( $length ) ) {
			if ( isset( $this->options[ 'excerpt_length' ] ) )
				$length = $this->options[ 'excerpt_length' ];
			else 
				$length = 55;
		}
		
		
		$words = preg_split( '/ /', $text, $length + 1 );
		
		$words_limit = count($words);
		
		$words[ $words_limit -1 ] = preg_replace( '/([^\.]\.\s).+/sim' , '$1', $words[ $words_limit - 1] );

		if ( count( $words ) > $length ) {

			$text = implode( ' ', $words );
		}		
		return $text;
	} // END method wpui_generate_excerpt
	

	/**
	 * Function: wpui_get_post
	 * Get individual posts.
	 * 
	 * @since 0.7
	 * @param $ID of the post
	 * @param $args array.
	 */
	function wpui_get_post( $ID , $length , $type='post' ) {
		if ( ! $ID ) return;
		if ( ! $length  && isset( $this->options[ 'excerpt_length' ] ) )
			$length = $this->option[ 'excerpt_length' ];
			
		if ( $type == 'page' )			
			$length = 55;
		
		if ( $type == 'page' ) {
			if ( is_numeric( $ID ) ) 
				$wpui_post = get_page( $ID );
			else
				$wpui_post = get_page_by_title( $ID );
		} else {
			$wpui_post = get_post( $ID );
		}
		
		if ( ! $wpui_post ) {
			return "Please verify the post/page ID. Check the spelling if using a name or title.";
		}


		$p_title = $wpui_post->post_title;
		$p_thumb = ( function_exists( 'get_the_post_thumbnail' ) ) ? get_the_post_thumbnail( $ID ) : '';				

		$more_link = get_permalink( $ID );
		$check_more = preg_match( '/<!--more-->/im', $wpui_post->post_content);
		// die();

		if ( $length == 'more' && $check_more ) {
			$pos = stripos( $wpui_post->post_content , '<!--more-->' );
			$post_exc = substr( $wpui_post->post_content, 0 , $pos);
		} else {
			$length = intval( $length );
			$post_exc = $wpui_post->post_content;
			$post_exc = $this->get_excerpt( $post_exc, $length );
		}
				
		$post_date = mysql2date( get_option( 'date_format' ) , $wpui_post->post_date_gmt);
		
		if ( $type != 'page' ) {
			$cats = get_the_category_list( ', ', '', $wpui_post->ID );
			$tags = $this->wpui_get_post_tags( $wpui_post->ID );
		} else {
			$cats = $tags = '';
		}
		
		// $so_content = $wpui_post->post_content;
		$so_content = apply_filters( 'the_content', $wpui_post->post_content );
		$so_content = str_replace(']]>', ']]&gt;', $so_content);
		
		$output = array(
			'title'		=>	$wpui_post->post_title,
			'excerpt'	=>	$post_exc,
			'content'	=>	$so_content,
			'thumbnail'	=>	$p_thumb,
			'date'		=>	$post_date,
			'author'	=>	get_the_author_meta('display_name', $wpui_post->post_author),
			'url'		=>	$more_link,
			'meta'		=>	array(
								'cat'		=>	$cats,
								'tag'		=>	$tags,
								'comments'	=>	$wpui_post->comment_count
							)
			);
		
		return $output;
		
	} // END method wpui_get_post.
	
	
	
	/**
	 * Function wpui_get_posts
	 * 	Get **multiple posts** with custom query.
	 * 
	 * See also :
	 * 	<wpui_get_post>
	 * 
	 *	@param $args array
	 * 	@since 0.7
	 * 	@uses WP_Query, wp_reset_postdata()
	 * 	@return array $posts 
	 */
	function wpui_get_posts( $args='' ) {
		$defaults = array(
			'get'			=>	'',
			'cat'			=>	'',
			'category_name'	=>	'',
			'tag'			=>	'',
			'tag_name'		=>	'',
			'post_type'		=>	'post',
			'post_status'	=>	'publish',
			'number'		=>	'4',
			'offset'		=>	false,
			'search'		=>	'',
			'exclude'		=>	'',
			'length'		=>	'more',
			'excerpt'		=>	true,
			'thumbnail'		=>	true,
			'meta'			=>	true,
			'related'		=>	'category',
		);
		
		$r = wp_parse_args( $args, $defaults );

		$qquery = array();
		
		/**
		 * 	Preference - Get > Cat > Tag
		 */
		if ( $r[ 'get' ] != '' ) {
			// Get recent posts
			if ( $r['get'] == 'recent' ) {
			} else if ( $r[ 'get' ] == 'popular' ) {
				$qquery = array( 'orderby' => 'comment_count' ); 
			} elseif ( $r[ 'get' ] == 'random' ) {
				$qquery = array( 'orderby' => 'rand' );
			} elseif ( $r[ 'get' ] == 'related' ) {
				global $post;
				
				if ( $r[ 'related' ] == 'tags' ) { 
				$rtags = wp_get_post_tags( $post->ID );
					if ( $rtags ) {
						$rels = array();
						foreach( $rtags as $tags ) $rels[] = $tags->term_id;
						$qquery[ 'tag__not_in' ] = $rels;
					}
				} else {
					$rcats = get_the_category( $post->ID );
					if ( $rcats ) {
						$rels = array();
						foreach( $rcats as $cats ) $rels = $cats->term_id;
						$qquery[ 'category__in' ] = $rels;
					}
				}
			}
			if ( $r[ 'exclude' ] != '' ) {
				$excl_array = explode( ',' , $r[ 'exclude' ] );
				if ( is_array( $excl_array ) )
				$qquery[ 'post__not_in' ] = $excl_array;
			}
		} else {
		/**
		 * Categories and tags.
		 */	
		// Cats
		if ( $r[ 'cat' ] != '' || $r[ 'category_name' ] != '' ) {
			$r[ 'tag' ] = ''; 

			if ( $r[ 'category_name' ] != '' )
				$qquery[ 'category_name' ] = $r[ 'category_name' ];
			else 
				$qquery[ 'cat' ] = $r[ 'cat' ];
				
			if ( $r[ 'exclude' ] != '' ) {
				$excl_array = explode( ',' , $r[ 'exclude' ] );
				if ( is_array( $excl_array ) )
				$qquery[ 'category__not_in' ] = $excl_array;
			}
		}

		// Tags
		if ( $r[ 'tag' ] != '' || $r[ 'tag_name' ] != '' ) {
			
			if ( $r[ 'tag_name' ] != '' ) {
				$qquery[ 'tag' ] = $r[ 'tag_name' ];				
			} else {
				$tags_arr = explode( ',', $r[ 'tag' ] );
				$qquery[ 'tag__in' ] = $tags_arr;				
			}	
			
			if ( $r[ 'exclude' ] != '' ) {
				$excl_array = explode(',', $r[ 'exclude' ] );
				if ( is_array( $excl_array ) )
				$qquery[ 'tag__not_in' ] = $excl_array;		
			}
		
		}
		}

		$qquery[ 'posts_per_page' ] = $r['number'];
		
		if ( $r[ 'post_type' ] != '' ) 
		$qquery[ 'post_type' ] = $r[ 'post_type' ];
		
		if ( $r['post_status' ] != 'publish' )
		$qquery[ 'post_status' ] = $r[ 'post_status' ];
					
		$get_posts = new WP_Query( $qquery );
				
		$post_count = 0;
		$post_basket = array();
		
		while ( $get_posts->have_posts() ) : $get_posts->the_post();
		
		$wost = array();
		
		$content = get_the_content();
		
		$wost['title'] = get_the_title();
		// $wost[ 'thumbnail' ] = ( function_exists( 'get_the_post_thumbnail' ) ) ? get_the_post_thumbnail( get_the_ID() ) : '';		 
		$wost[ 'thumbnail' ] = $this->get_thumbnail( get_the_ID() );
		$wost['content'] = $content;
		$check_more = preg_match( '/<!--more-->/im', $wost['content']);

		// if ( $r[ 'length' ] == 'more' && $check_more ) {
		// 	$pos = stripos( $content , '<!--more-->' );
		// 	$wost[ 'excerpt' ] = substr( $content, 0 , $pos);
		// } else {
		if ( $r[ 'length' ] == 'more' )	{
			$wost['excerpt'] = get_the_excerpt();
		} else {
			$elength = intval( $r[ 'length' ] );
			if ( ! is_int( $elength ) ) $elength = 55;
			$wost[ 'excerpt' ] = $this->get_excerpt( $content, $elength );
		}
		
		$wost[ 'meta' ] = array();
		$wost[ 'meta' ][ 'cat' ] = get_the_category_list( ',' );			
		$wost[ 'meta' ][ 'tag' ] = 	get_the_tag_list('', ', ', '');
		$wost[ 'meta' ][ 'comments' ] = get_comments_number();
		
		// }
		$wost[ 'date' ] = get_the_date();
		$wost[ 'url' ] = get_permalink( get_the_ID() );
		$wost[ 'author' ] = get_the_author();
		// $post_basket

		$post_basket[ $post_count ] = $wost;

		$post_count++;
		endwhile; // end while get_posts loop
		
		wp_reset_postdata();

		if ( $post_basket )
			return $post_basket;
	} // END function wpui_get_posts
	
	
	/**
	 * Function: get_relative_time 
	 * Get the relative time e.g, 5 days ago.
	 * 
	 * @since 0.5.8
	 * @uses mysql2date, human_time_diff
	 * @param integer $time, post time in GMT.
	 * @return string, relative time
	 */
	function get_relative_time( $time )
	{
		$time = mysql2date( 'U' , $time );
		$time = human_time_diff( $time, current_time( 'timestamp' ) ) . __( ' ago', 'wp-ui' );
		return $time;
	} // END function get_relative_time
	
	
	/**
	 * 	Function: wpui_get_post_tags
	 * Get the tags from a post ID.
	 * 
	 * @uses get_the_tags()
	 * @since 0.7
	 * @param $ID id of the post.
	 * @param $separator string 
	 * @return $output long string of tags.
	 */
	function wpui_get_post_tags( $pID='0' , $sep=', ' )
	{		
		$get_tags = get_the_tags( $pID );
		
		$output = '';
		$total_tags = count( $get_tags );
		$present_tag = 1;
		
		if ( ! $get_tags ) return;
		
		foreach( $get_tags as $tag ) {
			if ( $present_tag == $total_tags ) $sep = '';
			$output .= '<a href="' . get_tag_link( $tag->term_id ) . '">' . $tag->name . '</a>' . $sep;
			$present_tag++;
		}		
		return $output;		
	} // END function wpui_get_post_tags
	
	
	/**
	 * Function: wpui_get_feeds
	 *	Get a feed and output the array.
	 * 
	 * @param $args array.
	 * @return $items array
	 */
	function wpui_get_feeds( $args='' )
	{
		$defaults = array(
			'url'		=>	'',
			'number'	=>	5,
			'length'	=>	55
		);
		
		$r = wp_parse_args( $args, $defaults );
		
		// Fix URLS with special characters.		
		$feed = fetch_feed( wp_specialchars_decode(esc_url( $r[ 'url' ] ) ) );

		if ( is_wp_error( $feed ) )
			return false;
			
		$number = $feed->get_item_quantity( $r[ 'number' ] );

		$items = $feed->get_items( 0, $number );

		$lists = array();
		$itera = 0;

		$format_opt = get_option( 'date_format' );
		$date_format = ( $format_opt ) ? $format_opt : 'l, F jS, Y';
	
		foreach( $items as $item ) {
			$thisArr[ 'title' ] = $item->get_title();
			$thisArr['url'] = $item->get_permalink();
			$thisArr[ 'date' ] = $item->get_date( $date_format );
			$thisArrAuth = $item->get_author();
			$thisArr[ 'author' ] = ( $thisArrAuth ) ? $thisArrAuth->get_name() : '';

			$thisArr[ 'content' ] = $item->get_content();
			
			if ( strlen( $thisArr[ 'content' ] ) > intval( $r[ 'length' ] ) )
				$thisArr[ 'excerpt' ] = $this->get_excerpt( $thisArr[ 'content' ], $r[ 'length' ] );
			else
				$thisArr[ 'excerpt' ] = $thisArr[ 'content' ];
				
			$thisArr[ 'thumbnail' ] = $this->get_image_from_Content( $thisArr[ 'content' ] );
	
			$thisArr[ 'meta' ][ 'cat' ]  = '';
			
			$thisCat = $item->get_category();
			if ( $thisCat )
			$thisArr[ 'meta' ][ 'cat' ]  = $thisCat->get_term();
			$thisArr[ 'meta' ][ 'tag' ]  = '';
			$thisArr[ 'meta' ][ 'comments' ]  = '';
			
			$lists[ $itera ] = $thisArr;
			$itera++;
		}
		
		return $lists;
	} // END function wpui_get_feeds
	
	/**
	 * Function: get_thumbnail
	 * 	Get the thumbnail from a post using ID. Use the default image if there is none.
	 * 
	 * @param $ID - integer ID of post.
	 * @return $img HTML tag string
	 */
	function get_thumbnail( $ID ) {
		$width = ( isset( $this->options['post_default_thumbnail' ] ) &&
		 	( $this->options[ 'post_default_thumbnail' ][ 'width' ] != '' ) ) ?
		 $this->options[ 'post_default_thumbnail']['width'] : get_option( 'thumbnail_size_w' );
		
		$height = ( isset( $this->options['post_default_thumbnail' ] ) &&
		 	( $this->options[ 'post_default_thumbnail' ][ 'height' ] != '' ) ) ?
		 $this->options[ 'post_default_thumbnail']['height'] : get_option( 'thumbnail_size_h' );

		$title = get_the_title( $ID );
		
		if ( function_exists( 'has_post_thumbnail' ) && has_post_thumbnail( $ID ) ) {
			// $thumbs = wp_get_attachment_image_src( get_post_thumbnail_id( $ID ), array( $width, $height ), true );
			$thumbs = get_the_post_thumbnail( $ID , array( $width, $height ), true );
		
		} else {
			$thumbs = ( isset( $this->options[ 'post_default_thumbnail' ] ) && $this->options[ 'post_default_thumbnail' ][ 'url' ] != '' ) ? 
			 $this->options['post_default_thumbnail']['url'] : false;
			$thumbs = '<img src="' . $thumbs . '" width="' . $width . '" height="' . $height . '" alt="' . $title . '" />';
		}
		
		if ( $thumbs ) {
			return $thumbs; 
		}

	}
	
	/**
	 * Function: get_image_from_content
	 * Get the first image from a block of content.
	 * 
	 * @param $content - HTML string
	 * @return image.
	 */
	function get_image_from_content( $content )
	{
		if ( ! $content ) return;
		
		$content = html_entity_decode( $content, ENT_QUOTES, 'UTF-8' );
		preg_match( '/<img[^>]+\>/i', $content, $matches );
		if ( empty( $matches ) && ! count( $matches ) > 0 )
			return;
		
		$thumb_width = get_option( 'thumbnail_size_w' );
		$thumb_height = get_option( 'thumbnail_size_h' );
		$image = $matches[ 0 ];
		
		$image = preg_replace( '|width="([^"]*)"|' , 'width="' . $thumb_width . '"', $image );
		$image = preg_replace( '|height="([^"]*)"|' , 'height="' . $thumb_height . '"', $image );
		

		return $image;
	} // END function get_image_from_content

	
	/**
	 * Function: put_related_posts
	 * 	Append related posts shortcode to the end of single post.
	 * 
	 * @param $content
	 * @return $content 
	 */
	function put_related_posts( $content ) {
		global $post, $wp_query;
		
		static $sinstance = 0;
		if ( ( $sinstance != 0 ) || ( ! is_singular() ) || ( $post->ID !== $wp_query->post->ID ) ) {
			return $content;
		} else {
			$sinstance++;
		}
			
		// echo $post->ID . ':::::::::::' . $wp_query->post->ID . '<br />';
		
		// $content .= do_shortcode( '[wpui_related_posts]' );
		$content .= '<style type="text/css">ul.wpui-related-posts{margin :10px 0px !important;padding :0px !important;float :none !important;overflow :hidden;list-style :none;}
		ul.wpui-related-posts li.row-first{border-left :none !important;}
		ul.wpui-related-posts li.row-last{border-right :none !important;}
		ul.wpui-related-posts li{padding:10px;vertical-align :top;font-size :12px;text-align :center;
		height :100%;opacity :0.7;float :left;-moz-transition :all 0.6s ease-out 0.2s;-webkit-transition :all 0.6s ease-out 0.2s;-o-transition :all 0.6s ease-out 0.2s;-ms-transition :all 0.6s ease-out 0.2s;-moz-border-radius :4px;-webkit-border-radius :4px;-o-border-radius :4px;border-radius :4px;}
		ul.wpui-related-posts li:hover{opacity :1;background :#EEE;-webkit-transition :all 0.6s ease-in 0.2s;-moz-transition :all 0.6s ease-in 0.2s;-o-transition :all 0.6s ease-in 0.2s;-ms-transition :all 0.6s ease-in 0.2s;}
		.wpui-related-posts .wpui-post-thumbnail a img{padding :10px;border :1px solid #888 !important;}
		.wpui-related-posts .wpui-rel-post-title{text-transform :uppercase;}
		.wpui-per_2 li .wpui-rel-post-thumbnail{float :left;width :100px;}
		.wpui-per_2 li .wpui-rel-post-meta{float :left;width :150px;}
		.wpui-per_2 li .wpui-rel-post-meta span{display :block;}</style>';
		$content .= '[wpui_related_posts]';

		return $content;
	} // END get_related_posts;
	
	
	function insert_related_posts( $atts, $content = null) {
		extract(shortcode_atts(array(
			'type'		=>	'popular',
			'number'	=>	4,
			'per_row'	=>	4,
			'title'		=>	'We recommend',
			'singular'	=>	'true',
			'settings'	=>	'true'
		), $atts));
		
		if ( ! is_singular() && $singular == 'false' ) return $content;
		global $post;
				
		$pst_id = $post->ID;		
		
		if ( $settings == true || isset( $this->options ) && is_array($this->options[ 'post_widget']) ) {
			$pst_wid = $this->options['post_widget'];			
		} else {
			$pst_wid = array( 'title' => $title, 'number' => $number, 'per_row' => $per_row, 'type' => $type ); 
		}
		
			$num =  $pst_wid[ 'number' ];
			$get = $pst_wid[ 'type' ];
			
			$rel_opts = array();
			$rel_opts['get'] = $get;
			$rel_opts['number'] = ( $get != 'related' ) ? $num - 1 : $num;
			$rel_opts[ 'exclude' ] = $pst_id;
			
			$rel_posts = $this->wpui_get_posts( $rel_opts );

			$output = '';
			
			$per_row = $pst_wid[ 'per_row' ];
			
			if ( $pst_wid['title' ] != '' )
			$output .= '<h3 class="wpui-related-posts-title">' . $pst_wid[ 'title' ] . '</h3>';
					
			if ( is_array( $rel_posts ) ) {
				$output .= '<ul class="wpui-related-posts wpui-per_' . $per_row . '">';
				foreach( $rel_posts as $rel=>$rpost ) {
					$classs = '';
		
					$classs .= ( ( ($rel + 1 ) % $per_row ) == 0 ) ? ' row-last' : '';
					$classs .= ( ( ($rel ) % $per_row) == 0 ) ? ' row-first' : '';
		
					$output .= "<li class='$classs'>";
					if ( $rpost[ 'thumbnail' ] != '' )
					$output .= '<div class="wpui-rel-post-thumbnail">';
					$output .= '<a href="' . $rpost[ 'url' ] . '" title="' . $rpost[ 'title' ] . '">';
					$output .= $rpost[ 'thumbnail' ];
					$output .= '</a>';
					$output .='</div>';
					$output .= '<div class="wpui-rel-post-meta"><span class="wpui-rel-post-title">' . $rpost[ 'title' ] . '</span>';
					if ( $per_row == 2 )
					$output .= '<span class="wpui-rel-post-author">' . $rpost['author'] .'</span><span class="wpui-rel-post-time">' . $rpost['date'] . '</span>';
					$output .= '</div>';
					$output .= '</li>';
				}	
				$output .= '</ul>';			
			}
							
			return $output;	
				
			// return apply_filters( 'the_content', $content );
	}
	
	

} // end class wpuiPosts;


/*$wpui_posts = new wpuiPosts();
$wpui_opts = get_option( 'wpUI_Options' );

function wpui_get_my_post( $id=null, $template=1, $type="post" ) {
	if ( ! $id ) return;
	global $wpui_posts, $wpui_opts;
	
	$tmpl = $wpui_opts[ 'post_template_' . $template ];
	
	$post_content = $wpui_posts->wpui_get_post( $id, 'more', $type );
	
	$post_content = $wpui_posts->replace_tags( $post_content, $tmpl );
	echo do_shortcode( $post_content );	
}

function wpui_get_my_posts_spoiler( $args ) {
	if ( ! $args || ( $args['cat'] == '' || $args['tag'] == '' ) ) return;
	global $wpui_posts, $wpui_opts;
	
	$defaults = array(
		'cat'		=>	'',
		'tag'		=>	'',
		'number'	=>	'5',
		'template'	=>	'1',
		'length'	=>	
	);
	
	$args = wp_parse_args( $args, $defaults );	
	
	$get_my_posts = $wpui_posts->wpui_get_posts( $args );	
	
	foreach( $get_my_posts as $get=>$posts ) {
		
	}	
	
}
*/





?>

https://t.me/RX1948 - 2025