![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/gg.corals.io/wp-content/plugins/trx_addons/components/shortcodes/blogger/ |
<?php /** * Shortcode: Blogger * * @package WordPress * @subpackage ThemeREX Addons * @since v1.2 */ // Don't load directly if ( ! defined( 'TRX_ADDONS_VERSION' ) ) { die( '-1' ); } // Load required styles and scripts for the frontend if ( !function_exists( 'trx_addons_sc_blogger_load_scripts_front' ) ) { add_action("wp_enqueue_scripts", 'trx_addons_sc_blogger_load_scripts_front'); function trx_addons_sc_blogger_load_scripts_front() { if (trx_addons_is_on(trx_addons_get_option('debug_mode'))){ wp_enqueue_style( 'trx_addons-sc_blogger', trx_addons_get_file_url(TRX_ADDONS_PLUGIN_SHORTCODES . 'blogger/blogger.css'), array(), null ); } } } // Load responsive styles for the frontend if ( !function_exists( 'trx_addons_sc_blogger_load_responsive_styles' ) ) { add_action("wp_enqueue_scripts", 'trx_addons_sc_blogger_load_responsive_styles', 2000); function trx_addons_sc_blogger_load_responsive_styles() { if (trx_addons_is_on(trx_addons_get_option('debug_mode'))) { wp_enqueue_style( 'trx_addons-sc_blogger-responsive', trx_addons_get_file_url(TRX_ADDONS_PLUGIN_SHORTCODES . 'blogger/blogger.responsive.css'), array(), null ); } } } // Merge shortcode's specific styles to the single stylesheet if ( !function_exists( 'trx_addons_sc_blogger_merge_styles' ) ) { add_filter("trx_addons_filter_merge_styles", 'trx_addons_sc_blogger_merge_styles'); function trx_addons_sc_blogger_merge_styles($list) { $list[] = TRX_ADDONS_PLUGIN_SHORTCODES . 'blogger/blogger.css'; return $list; } } // Merge shortcode's specific styles to the single stylesheet (responsive) if ( !function_exists( 'trx_addons_sc_blogger_merge_styles_responsive' ) ) { add_filter("trx_addons_filter_merge_styles_responsive", 'trx_addons_sc_blogger_merge_styles_responsive'); function trx_addons_sc_blogger_merge_styles_responsive($list) { $list[] = TRX_ADDONS_PLUGIN_SHORTCODES . 'blogger/blogger.responsive.css'; return $list; } } // Removes terms count in the string if ( !function_exists( 'trx_addons_sc_blogger_remove_terms_counter' ) ) { function trx_addons_sc_blogger_remove_terms_counter($str, $replacement = '' ) { return preg_replace( array( '/\(\d+\)$/', '/^\-/' ), $replacement, $str); } } // trx_sc_blogger //------------------------------------------------------------- /* [trx_sc_blogger id="unique_id" type="default" cat="category_slug or id" count="3" columns="3" slider="0|1"] */ if ( !function_exists( 'trx_addons_sc_blogger' ) ) { function trx_addons_sc_blogger($atts, $content='') { // Exit to prevent recursion if (trx_addons_sc_stack_check('trx_sc_blogger')) return ''; $defa = trx_addons_sc_common_atts('id,title,slider,query', array( // Individual params "type" => 'default', // Query posts 'post_type' => 'post', 'taxonomy' => 'category', // Filters "show_filters" => 0, "filters_title" => '', "filters_subtitle" => '', "filters_title_align" => 'left', "filters_taxonomy" => 'category', "filters_active" => '', "filters_ids" => '', "filters_all" => '1', "filters_all_text" => '', "filters_more_text" => esc_html__('More posts', 'trx_addons'), // Post meta "meta_parts" => array('date', 'views', 'comments'), // Output options "image_position" => 'top', "image_width" => '40', "image_ratio" => 'none', "date_format" => '', "excerpt_length" => '', "text_align" => 'left', "on_plate" => 0, "hide_excerpt" => 0, "no_links" => 0, "numbers" => 0, "more_text" => esc_html__('Read more', 'trx_addons'), "pagination" => "none", "page" => 1, ) ); $layouts = apply_filters('trx_addons_sc_type', trx_addons_components_get_allowed_layouts('sc', 'blogger'), 'trx_sc_blogger' ); if (is_array($layouts)) { $templates = trx_addons_components_get_allowed_templates('sc', 'blogger', $layouts); foreach($layouts as $k=>$v) { $defa["template_{$k}"] = isset($templates[$k]) ? trx_addons_array_get_first($templates[$k]) : ''; } } $atts = trx_addons_sc_prepare_atts('trx_sc_blogger', $atts, $defa ); if (!empty($atts['ids'])) { $atts['ids'] = str_replace(array(';', ' '), array(',', ''), $atts['ids']); $atts['count'] = count(explode(',', $atts['ids'])); } if (!is_array($atts['filters_ids'])) { $atts['filters_ids'] = trim($atts['filters_ids']); $atts['filters_ids'] = empty($atts['filters_ids']) ? array() : explode(',', $atts['filters_ids']); } $atts['count'] = $atts['count'] < 0 ? -1 : max(1, (int) $atts['count']); $atts['offset'] = max(0, (int) $atts['offset']); if (empty($atts['orderby'])) $atts['orderby'] = 'date'; if (empty($atts['order'])) $atts['order'] = 'desc'; $atts['slider'] = max(0, (int) $atts['slider']); if ($atts['slider'] > 0 && (int) $atts['slider_pagination'] > 0) $atts['slider_pagination'] = 'bottom'; if ($atts['slider'] > 0) $atts['pagination'] = 'none'; $atts['excerpt_length'] = !empty($atts['excerpt_length']) ? max(1, $atts['excerpt_length']) : ''; ob_start(); trx_addons_get_template_part(array( TRX_ADDONS_PLUGIN_SHORTCODES . 'blogger/tpl.'.trx_addons_esc($atts['type']).'.php', TRX_ADDONS_PLUGIN_SHORTCODES . 'blogger/tpl.default.php' ), 'trx_addons_args_sc_blogger', $atts ); $output = ob_get_contents(); ob_end_clean(); return apply_filters('trx_addons_sc_output', $output, 'trx_sc_blogger', $atts, $content); } } // Add shortcode [trx_sc_blogger] if (!function_exists('trx_addons_sc_blogger_add_shortcode')) { add_action('init', 'trx_addons_sc_blogger_add_shortcode', 20); function trx_addons_sc_blogger_add_shortcode() { add_shortcode("trx_sc_blogger", "trx_addons_sc_blogger"); } } // Add shortcodes //---------------------------------------------------------------------------- // Add shortcodes to Elementor if ( trx_addons_exists_elementor() ) { require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'blogger/blogger-sc-elementor.php'; } // Add shortcodes to Gutenberg if ( trx_addons_exists_gutenberg() ) { require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'blogger/blogger-sc-gutenberg.php'; } // Add shortcodes to VC if ( trx_addons_exists_vc() ) { require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'blogger/blogger-sc-vc.php'; } // Create our widget require_once TRX_ADDONS_PLUGIN_DIR . TRX_ADDONS_PLUGIN_SHORTCODES . 'blogger/blogger-widget.php';