Current File : /home/kelaby89/www/wp/wp-content/plugins/trx_addons/components/cpt/cars/widget.cars_sort-sc.php
<?php
/**
 * Widget: Cars Sort (Shortcodes)
 *
 * @package ThemeREX Addons
 * @since v1.6.25
 */

// Don't load directly
if ( ! defined( 'TRX_ADDONS_VERSION' ) ) {
	exit;
}



// trx_widget_cars_sort
//-------------------------------------------------------------
/*
[trx_widget_cars_sort id="unique_id" title="Widget title" orderby="price" order="desc"]
*/
if ( !function_exists( 'trx_addons_sc_widget_cars_sort' ) ) {
	function trx_addons_sc_widget_cars_sort($atts, $content = ''){	
		$atts = trx_addons_sc_prepare_atts( 'trx_widget_cars_sort', $atts, trx_addons_sc_common_atts( 'trx_widget_cars_sort', 'id', array(
			// Individual params
			"title" => "",
			"orderby" => "date",
			"order" => "desc",
		) ) );
		extract($atts);
		$type = 'trx_addons_widget_cars_sort';
		$output = '';
		global $wp_widget_factory;
		if ( is_object( $wp_widget_factory ) && isset( $wp_widget_factory->widgets, $wp_widget_factory->widgets[ $type ] ) ) {
			$output = '<div' . ($id ? ' id="'.esc_attr($id).'"' : '')
							. ' class="widget_area sc_widget_cars_sort' 
								. (trx_addons_exists_vc() ? ' vc_widget_cars_sort wpb_content_element' : '') 
								. (!empty($class) ? ' ' . esc_attr($class) : '') 
								. '"'
							. ($css ? ' style="'.esc_attr($css).'"' : '')
						. '>';
			ob_start();
			the_widget( $type, $atts, trx_addons_prepare_widgets_args($id ? $id.'_widget' : 'widget_cars_sort', 'widget_cars_sort') );
			$output .= ob_get_contents();
			ob_end_clean();
			$output .= '</div>';
		}
		return apply_filters('trx_addons_sc_output', $output, 'trx_widget_cars_sort', $atts, $content);
	}
}


// Add shortcode [trx_widget_cars_sort]
if (!function_exists('trx_addons_sc_widget_cars_sort_add_shortcode')) {
	function trx_addons_sc_widget_cars_sort_add_shortcode() {
		add_shortcode("trx_widget_cars_sort", "trx_addons_sc_widget_cars_sort");
	}
	add_action('init', 'trx_addons_sc_widget_cars_sort_add_shortcode', 20);
}
Page not found – Hello World !