min_m3

divi custom blog module

Jun 26th, 2019
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 52.47 KB | None | 0 0
  1. <?php
  2.  
  3. class CF_CPT_Blog_Module extends ET_Builder_Module_Type_PostBased {
  4.     function init() {
  5.         $this->name       = esc_html__( 'CF-CPT Module', 'et_builder' );
  6.         $this->plural     = esc_html__( 'CF-CPT Modules', 'et_builder' );
  7.         $this->slug       = 'et_pb_blog_CF';
  8.         $this->vb_support = 'on';
  9.         $this->main_css_element = '%%order_class%% .et_pb_post';
  10.  
  11.         $this->settings_modal_toggles = array(
  12.             'general'  => array(
  13.                 'toggles' => array(
  14.                     'main_content' => esc_html__( 'Content', 'et_builder' ),
  15.                     'elements'     => esc_html__( 'Elements', 'et_builder' ),
  16.                 ),
  17.             ),
  18.             'advanced' => array(
  19.                 'toggles' => array(
  20.                     'layout'  => esc_html__( 'Layout', 'et_builder' ),
  21.                     'overlay' => esc_html__( 'Overlay', 'et_builder' ),
  22.                     'image' => array(
  23.                         'title' => esc_html__( 'Image', 'et_builder' ),
  24.                         'priority' => 51,
  25.                     ),
  26.                     'text'    => array(
  27.                         'title'    => esc_html__( 'Text', 'et_builder' ),
  28.                         'priority' => 49,
  29.                     ),
  30.                 ),
  31.             ),
  32.         );
  33.  
  34.         $this->advanced_fields = array(
  35.             'fonts'                 => array(
  36.                 'header' => array(
  37.                     'label'    => esc_html__( 'Title', 'et_builder' ),
  38.                     'css'      => array(
  39.                         'main' => "{$this->main_css_element} .entry-title",
  40.                         'font' => "{$this->main_css_element} .entry-title a",
  41.                         'color' => "{$this->main_css_element} .entry-title a",
  42.                         'limited_main' => "{$this->main_css_element} .entry-title, {$this->main_css_element} .entry-title a",
  43.                         'important' => 'all',
  44.                     ),
  45.                     'header_level' => array(
  46.                         'default' => 'h2',
  47.                         'computed_affects' => array(
  48.                             '__posts',
  49.                         ),
  50.                     ),
  51.                 ),
  52.                 'body'   => array(
  53.                     'label'    => esc_html__( 'Body', 'et_builder' ),
  54.                     'css'      => array(
  55.                         'main'        => "{$this->main_css_element} .post-content, %%order_class%%.et_pb_bg_layout_light .et_pb_post .post-content p, %%order_class%%.et_pb_bg_layout_dark .et_pb_post .post-content p",
  56.                         'color'       => "{$this->main_css_element}, {$this->main_css_element} .post-content *",
  57.                         'line_height' => "{$this->main_css_element} p",
  58.                         'limited_main' => "{$this->main_css_element}, %%order_class%%.et_pb_bg_layout_light .et_pb_post .post-content p, %%order_class%%.et_pb_bg_layout_dark .et_pb_post .post-content p, %%order_class%%.et_pb_bg_layout_light .et_pb_post a.more-link, %%order_class%%.et_pb_bg_layout_dark .et_pb_post a.more-link",
  59.                     ),
  60.                 ),
  61.                 'meta' => array(
  62.                     'label'    => esc_html__( 'Meta', 'et_builder' ),
  63.                     'css'      => array(
  64.                         'main'        => "{$this->main_css_element} .post-meta, {$this->main_css_element} .post-meta a",
  65.                         'limited_main' => "{$this->main_css_element} .post-meta, {$this->main_css_element} .post-meta a, {$this->main_css_element} .post-meta span",
  66.                     ),
  67.                 ),
  68.                 'pagination' => array(
  69.                     'label'    => esc_html__( 'Pagination', 'et_builder' ),
  70.                     'css'      => array(
  71.                         'main' => function_exists( 'wp_pagenavi' ) ? '%%order_class%% .wp-pagenavi a, %%order_class%% .wp-pagenavi span' : '%%order_class%% .pagination a',
  72.                         'important'  => function_exists( 'wp_pagenavi' ) ? 'all' : array(),
  73.                         'text_align' => '%%order_class%% .wp-pagenavi',
  74.                     ),
  75.                     'hide_text_align' => ! function_exists( 'wp_pagenavi' ),
  76.                     'text_align' => array(
  77.                         'options' => et_builder_get_text_orientation_options( array( 'justified' ), array() ),
  78.                     ),
  79.                 ),
  80.             ),
  81.             'background'            => array(
  82.                 'css' => array(
  83.                     'main' => '%%order_class%%',
  84.                 ),
  85.             ),
  86.             'borders'               => array(
  87.                 'default' => array(
  88.                     'css' => array(
  89.                         'main' => array(
  90.                             'border_radii'  => "%%order_class%% .et_pb_blog_grid .et_pb_post",
  91.                             'border_styles' => "%%order_class%% .et_pb_blog_grid .et_pb_post",
  92.                             'border_styles_hover' => "%%order_class%% .et_pb_blog_grid .et_pb_post:hover",
  93.                         ),
  94.                     ),
  95.                     'depends_on'      => array( 'fullwidth' ),
  96.                     'depends_show_if' => 'off',
  97.                     'defaults' => array(
  98.                         'border_radii'  => 'on||||',
  99.                         'border_styles' => array(
  100.                             'width' => '1px',
  101.                             'color' => '#d8d8d8',
  102.                             'style' => 'solid',
  103.                         ),
  104.                     ),
  105.                 ),
  106.                 'fullwidth' => array(
  107.                     'css' => array(
  108.                         'main' => array(
  109.                             'border_radii'  => "%%order_class%%:not(.et_pb_blog_grid) .et_pb_post",
  110.                             'border_styles' => "%%order_class%%:not(.et_pb_blog_grid) .et_pb_post",
  111.                         ),
  112.                     ),
  113.                     'depends_on'      => array( 'fullwidth' ),
  114.                     'depends_show_if' => 'on',
  115.                     'defaults'        => array(
  116.                         'border_radii'  => 'on||||',
  117.                         'border_styles' => array(
  118.                             'width' => '0px',
  119.                             'color' => '#333333',
  120.                             'style' => 'solid',
  121.                         ),
  122.                     ),
  123.                 ),
  124.             ),
  125.             'margin_padding' => array(
  126.                 'css'           => array(
  127.                     'main' => '%%order_class%%',
  128.                     'important' => array( 'custom_margin' )
  129.                 ),
  130.             ),
  131.             'text'                  => array(
  132.                 'use_background_layout' => true,
  133.                 'css' => array(
  134.                     'text_shadow' => '%%order_class%%',
  135.                 ),
  136.                 'options' => array(
  137.                     'background_layout' => array(
  138.                         'depends_show_if' => 'on',
  139.                         'default_on_front' => 'light',
  140.                         'hover' => 'tabs',
  141.                     ),
  142.                 ),
  143.             ),
  144.             'filters'               => array(
  145.                 'css' => array(
  146.                     'main' => '%%order_class%%',
  147.                 ),
  148.                 'child_filters_target' => array(
  149.                     'tab_slug' => 'advanced',
  150.                     'toggle_slug' => 'image',
  151.                 ),
  152.             ),
  153.             'image'                 => array(
  154.                 'css' => array(
  155.                     'main' => implode(', ', array(
  156.                         '%%order_class%% img',
  157.                         '%%order_class%% .et_pb_slides',
  158.                         '%%order_class%% .et_pb_video_overlay',
  159.                     )),
  160.                 ),
  161.             ),
  162.             'button'                => false,
  163.         );
  164.  
  165.         $this->custom_css_fields = array(
  166.             'title' => array(
  167.                 'label'    => esc_html__( 'Title', 'et_builder' ),
  168.                 'selector' => '.entry-title',
  169.             ),
  170.             'content' => array(
  171.                 'label'    => esc_html__( 'Content', 'et_builder' ),
  172.                 'selector' => '.post-content',
  173.             ),
  174.             'post_meta' => array(
  175.                 'label'    => esc_html__( 'Post Meta', 'et_builder' ),
  176.                 'selector' => '.post-meta',
  177.             ),
  178.             'pagenavi' => array(
  179.                 'label'    => esc_html__( 'Pagenavi', 'et_builder' ),
  180.                 'selector' => '.wp_pagenavi',
  181.             ),
  182.             'featured_image' => array(
  183.                 'label'    => esc_html__( 'Featured Image', 'et_builder' ),
  184.                 'selector' => '.et_pb_image_container',
  185.             ),
  186.             'read_more' => array(
  187.                 'label'    => esc_html__( 'Read More Button', 'et_builder' ),
  188.                 'selector' => '.more-link',
  189.             ),
  190.         );
  191.  
  192.         $this->help_videos = array(
  193.             array(
  194.                 'id'   => esc_html( 'PRaWaGI75wc' ),
  195.                 'name' => esc_html__( 'An introduction to the Blog module', 'et_builder' ),
  196.             ),
  197.             array(
  198.                 'id'   => esc_html( 'jETCzKVv6P0' ),
  199.                 'name' => esc_html__( 'How To Use Divi Blog Post Formats', 'et_builder' ),
  200.             ),
  201.         );
  202.     }
  203.  
  204.     function get_fields() {
  205.         $fields = array(
  206.             'fullwidth' => array(
  207.                 'label'             => esc_html__( 'Layout', 'et_builder' ),
  208.                 'type'              => 'select',
  209.                 'option_category'   => 'layout',
  210.                 'options'           => array(
  211.                     'on'  => esc_html__( 'Fullwidth', 'et_builder' ),
  212.                     'off' => esc_html__( 'Grid', 'et_builder' ),
  213.                 ),
  214.                 'affects'           => array(
  215.                     'background_layout',
  216.                     'masonry_tile_background_color',
  217.                     'border_radii_fullwidth',
  218.                     'border_styles_fullwidth',
  219.                     'border_radii',
  220.                     'border_styles',
  221.                 ),
  222.                 'description'        => esc_html__( 'Toggle between the various blog layout types.', 'et_builder' ),
  223.                 'computed_affects'   => array(
  224.                     '__posts',
  225.                 ),
  226.                 'tab_slug'           => 'advanced',
  227.                 'toggle_slug'        => 'layout',
  228.                 'default_on_front'   => 'on',
  229.             ),
  230.             'posts_number' => array(
  231.                 'label'             => esc_html__( 'Posts Number', 'et_builder' ),
  232.                 'type'              => 'text',
  233.                 'option_category'   => 'configuration',
  234.                 'description'       => esc_html__( 'Choose how much posts you would like to display per page.', 'et_builder' ),
  235.                 'computed_affects'   => array(
  236.                     '__posts',
  237.                 ),
  238.                 'toggle_slug'       => 'main_content',
  239.                 'default'           => 1,
  240.             ),
  241.  
  242.     //select individual post field added       
  243.             'post_type' => array(
  244.                 'label'             => esc_html__( 'Posts Type', 'et_builder' ),
  245.                 'type'              => 'select', // text or select
  246.                 'options'         => array_reduce( get_posts( 'post_type[]=country&post_type[]=story&posts_per_page=-1'), function( $result, $item ) {
  247.                 $result[$item->ID] = $item->post_title;
  248.         return $result;
  249.       }),
  250.                 'option_category'   => 'configuration',
  251.                 'description'       => esc_html__( 'Choose the post you want to display.', 'et_builder' ),
  252.                 'toggle_slug'       => 'main_content',
  253.                 'computed_affects'   => array(
  254.                     '__posts',
  255.                 ),
  256.             ),
  257.            
  258. //removed the following field
  259.             'include_categories' => array(
  260.                 'label'            => esc_html__( 'Include Categories', 'et_builder' ),
  261.                 'type'             => 'categories',
  262.                 'meta_categories'  => array(
  263.                     'all'     => esc_html__( 'All Categories', 'et_builder' ),
  264.                     'current' => esc_html__( 'Current Category', 'et_builder' ),
  265.                 ),
  266.                 'option_category'  => 'basic_option',
  267.                 'renderer_options' => array(
  268.                     'use_terms' => false,
  269.                 ),
  270.                 'description'      => esc_html__( 'Choose which categories you would like to include in the feed.', 'et_builder' ),
  271.                 'toggle_slug'      => 'main_content',
  272.                 'computed_affects' => array(
  273.                     '__posts',
  274.                 ),
  275.             ),
  276.  
  277.  
  278.    
  279.             'meta_date' => array(
  280.                 'label'             => esc_html__( 'Meta Date Format', 'et_builder' ),
  281.                 'type'              => 'text',
  282.                 'option_category'   => 'configuration',
  283.                 'description'       => esc_html__( 'If you would like to adjust the date format, input the appropriate PHP date format here.', 'et_builder' ),
  284.                 'toggle_slug'       => 'main_content',
  285.                 'computed_affects'  => array(
  286.                     '__posts',
  287.                 ),
  288.                 'default'           => 'M j, Y',
  289.             ),
  290.             'show_thumbnail' => array(
  291.                 'label'             => esc_html__( 'Show Featured Image', 'et_builder' ),
  292.                 'type'              => 'yes_no_button',
  293.                 'option_category'   => 'configuration',
  294.                 'options'           => array(
  295.                     'on'  => esc_html__( 'Yes', 'et_builder' ),
  296.                     'off' => esc_html__( 'No', 'et_builder' ),
  297.                 ),
  298.                 'description'       => esc_html__( 'This will turn thumbnails on and off.', 'et_builder' ),
  299.                 'computed_affects'  => array(
  300.                     '__posts',
  301.                 ),
  302.                 'toggle_slug'       => 'elements',
  303.                 'default_on_front'  => 'on',
  304.             ),
  305.             'show_content' => array(
  306.                 'label'             => esc_html__( 'Content', 'et_builder' ),
  307.                 'type'              => 'select',
  308.                 'option_category'   => 'configuration',
  309.                 'options'           => array(
  310.                     'off' => esc_html__( 'Show Excerpt', 'et_builder' ),
  311.                     'on'  => esc_html__( 'Show Content', 'et_builder' ),
  312.                 ),
  313.                 'affects'           => array(
  314.                     'show_more',
  315.                 ),
  316.                 'description'       => esc_html__( 'Showing the full content will not truncate your posts on the index page. Showing the excerpt will only display your excerpt text.', 'et_builder' ),
  317.                 'toggle_slug'       => 'main_content',
  318.                 'computed_affects'  => array(
  319.                     '__posts',
  320.                 ),
  321.                 'default_on_front'  => 'off',
  322.             ),
  323.             'show_more' => array(
  324.                 'label'             => esc_html__( 'Show Read More Button', 'et_builder' ),
  325.                 'type'              => 'yes_no_button',
  326.                 'option_category'   => 'configuration',
  327.                 'options'           => array(
  328.                     'off' => esc_html__( 'No', 'et_builder' ),
  329.                     'on'  => esc_html__( 'Yes', 'et_builder' ),
  330.                 ),
  331.                 'depends_show_if'   => 'off',
  332.                 'description'       => esc_html__( 'Here you can define whether to show "read more" link after the excerpts or not.', 'et_builder' ),
  333.                 'computed_affects'   => array(
  334.                     '__posts',
  335.                 ),
  336.                 'toggle_slug'       => 'elements',
  337.                 'default_on_front'  => 'off',
  338.             ),
  339.             'show_author' => array(
  340.                 'label'             => esc_html__( 'Show Author', 'et_builder' ),
  341.                 'type'              => 'yes_no_button',
  342.                 'option_category'   => 'configuration',
  343.                 'options'           => array(
  344.                     'on'  => esc_html__( 'Yes', 'et_builder' ),
  345.                     'off' => esc_html__( 'No', 'et_builder' ),
  346.                 ),
  347.                 'description'        => esc_html__( 'Turn on or off the author link.', 'et_builder' ),
  348.                 'computed_affects'   => array(
  349.                     '__posts',
  350.                 ),
  351.                 'toggle_slug'        => 'elements',
  352.                 'default_on_front'   => 'on',
  353.             ),
  354.             'show_date' => array(
  355.                 'label'             => esc_html__( 'Show Date', 'et_builder' ),
  356.                 'type'              => 'yes_no_button',
  357.                 'option_category'   => 'configuration',
  358.                 'options'           => array(
  359.                     'on'  => esc_html__( 'Yes', 'et_builder' ),
  360.                     'off' => esc_html__( 'No', 'et_builder' ),
  361.                 ),
  362.                 'description'        => esc_html__( 'Turn the date on or off.', 'et_builder' ),
  363.                 'computed_affects'   => array(
  364.                     '__posts',
  365.                 ),
  366.                 'toggle_slug'        => 'elements',
  367.                 'default_on_front'   => 'on',
  368.             ),
  369.             'show_categories' => array(
  370.                 'label'             => esc_html__( 'Show Categories', 'et_builder' ),
  371.                 'type'              => 'yes_no_button',
  372.                 'option_category'   => 'configuration',
  373.                 'options'           => array(
  374.                     'on'  => esc_html__( 'Yes', 'et_builder' ),
  375.                     'off' => esc_html__( 'No', 'et_builder' ),
  376.                 ),
  377.                 'description'        => esc_html__( 'Turn the category links on or off.', 'et_builder' ),
  378.                 'computed_affects'   => array(
  379.                     '__posts',
  380.                 ),
  381.                 'toggle_slug'        => 'elements',
  382.                 'default_on_front'   => 'on',
  383.             ),
  384.             'show_comments' => array(
  385.                 'label'             => esc_html__( 'Show Comment Count', 'et_builder' ),
  386.                 'type'              => 'yes_no_button',
  387.                 'option_category'   => 'configuration',
  388.                 'options'           => array(
  389.                     'on'  => esc_html__( 'Yes', 'et_builder' ),
  390.                     'off' => esc_html__( 'No', 'et_builder' ),
  391.                 ),
  392.                 'description'        => esc_html__( 'Turn comment count on and off.', 'et_builder' ),
  393.                 'computed_affects'   => array(
  394.                     '__posts',
  395.                 ),
  396.                 'toggle_slug'        => 'elements',
  397.                 'default_on_front'   => 'off',
  398.             ),
  399.             'show_pagination' => array(
  400.                 'label'             => esc_html__( 'Show Pagination', 'et_builder' ),
  401.                 'type'              => 'yes_no_button',
  402.                 'option_category'   => 'configuration',
  403.                 'options'           => array(
  404.                     'on'  => esc_html__( 'Yes', 'et_builder' ),
  405.                     'off' => esc_html__( 'No', 'et_builder' ),
  406.                 ),
  407.                 'description'        => esc_html__( 'Turn pagination on and off.', 'et_builder' ),
  408.                 'computed_affects'   => array(
  409.                     '__posts',
  410.                 ),
  411.                 'toggle_slug'        => 'elements',
  412.                 'default_on_front'   => 'on',
  413.             ),
  414.             'offset_number' => array(
  415.                 'label'            => esc_html__( 'Offset Number', 'et_builder' ),
  416.                 'type'             => 'text',
  417.                 'option_category'  => 'configuration',
  418.                 'description'      => esc_html__( 'Choose how many posts you would like to offset by', 'et_builder' ),
  419.                 'toggle_slug'      => 'main_content',
  420.                 'computed_affects' => array(
  421.                     '__posts',
  422.                 ),
  423.                 'default'          => 0,
  424.             ),
  425.             'use_overlay' => array(
  426.                 'label'             => esc_html__( 'Featured Image Overlay', 'et_builder' ),
  427.                 'type'              => 'yes_no_button',
  428.                 'option_category'   => 'layout',
  429.                 'options'           => array(
  430.                     'off' => esc_html__( 'Off', 'et_builder' ),
  431.                     'on'  => esc_html__( 'On', 'et_builder' ),
  432.                 ),
  433.                 'affects'           => array(
  434.                     'overlay_icon_color',
  435.                     'hover_overlay_color',
  436.                     'hover_icon',
  437.                 ),
  438.                 'description'       => esc_html__( 'If enabled, an overlay color and icon will be displayed when a visitors hovers over the featured image of a post.', 'et_builder' ),
  439.                 'computed_affects'   => array(
  440.                     '__posts',
  441.                 ),
  442.                 'tab_slug'          => 'advanced',
  443.                 'toggle_slug'       => 'overlay',
  444.                 'default_on_front'  => 'off',
  445.             ),
  446.             'overlay_icon_color' => array(
  447.                 'label'             => esc_html__( 'Overlay Icon Color', 'et_builder' ),
  448.                 'type'              => 'color-alpha',
  449.                 'custom_color'      => true,
  450.                 'depends_show_if'   => 'on',
  451.                 'tab_slug'          => 'advanced',
  452.                 'toggle_slug'       => 'overlay',
  453.                 'description'       => esc_html__( 'Here you can define a custom color for the overlay icon', 'et_builder' ),
  454.             ),
  455.             'hover_overlay_color' => array(
  456.                 'label'             => esc_html__( 'Hover Overlay Color', 'et_builder' ),
  457.                 'type'              => 'color-alpha',
  458.                 'custom_color'      => true,
  459.                 'depends_show_if'   => 'on',
  460.                 'tab_slug'          => 'advanced',
  461.                 'toggle_slug'       => 'overlay',
  462.                 'description'       => esc_html__( 'Here you can define a custom color for the overlay', 'et_builder' ),
  463.             ),
  464.             'hover_icon' => array(
  465.                 'label'               => esc_html__( 'Hover Icon Picker', 'et_builder' ),
  466.                 'type'                => 'select_icon',
  467.                 'option_category'     => 'configuration',
  468.                 'class'               => array( 'et-pb-font-icon' ),
  469.                 'depends_show_if'     => 'on',
  470.                 'description'         => esc_html__( 'Here you can define a custom icon for the overlay', 'et_builder' ),
  471.                 'tab_slug'            => 'advanced',
  472.                 'toggle_slug'         => 'overlay',
  473.                 'computed_affects'    => array(
  474.                     '__posts',
  475.                 ),
  476.             ),
  477.             'masonry_tile_background_color' => array(
  478.                 'label'             => esc_html__( 'Grid Tile Background Color', 'et_builder' ),
  479.                 'type'              => 'color-alpha',
  480.                 'custom_color'      => true,
  481.                 'toggle_slug'       => 'background',
  482.                 'depends_show_if'   => 'off',
  483.                 'depends_on'        => array(
  484.                     'fullwidth',
  485.                 ),
  486.                 'hover'             => 'tabs',
  487.             ),
  488.             '__posts' => array(
  489.                 'type' => 'computed',
  490.                 'computed_callback' => array( 'CF_CPT_Blog_Module', 'get_blog_posts' ),
  491.                 'computed_depends_on' => array(
  492.                     'fullwidth',
  493.                     'posts_number',
  494.                     'post_type',
  495.                     //'include_categories',
  496.                     'meta_date',
  497.                     'show_thumbnail',
  498.                     'show_content',
  499.                     'show_more',
  500.                     'show_author',
  501.                     'show_date',
  502.                     'show_categories',
  503.                     'show_comments',
  504.                     'show_pagination',
  505.                     'offset_number',
  506.                     'use_overlay',
  507.                     'hover_icon',
  508.                     'header_level',
  509.                     '__page',
  510.                 ),
  511.             ),
  512.             '__page'          => array(
  513.                 'type'              => 'computed',
  514.                 'computed_callback' => array( 'CF_CPT_Blog_Module', 'get_blog_posts' ),
  515.                 'computed_affects'  => array(
  516.                     '__posts',
  517.                 ),
  518.             ),
  519.         );
  520.         return $fields;
  521.     }
  522.  
  523.  
  524.  
  525.     public function get_transition_fields_css_props() {
  526.         $fields = parent::get_transition_fields_css_props();
  527.  
  528.         $fields['background_layout'] = array(
  529.             'color' => implode( ', ',
  530.                 array(
  531.                     '%%order_class%% .entry-title',
  532.                     '%%order_class%% .post-meta',
  533.                     '%%order_class%% .post-content'
  534.                 )
  535.             )
  536.         );
  537.         $fields['border_radii']            = array( 'border-radius' => self::$_->array_get( $this->advanced_fields, 'borders.default.css.main.border_radii' ) );
  538.         $fields['border_styles']           = array( 'border' => self::$_->array_get( $this->advanced_fields, 'borders.default.css.main.border_styles' ) );
  539.         $fields['border_radii_fullwidth']  = array( 'border-radius' => self::$_->array_get( $this->advanced_fields, 'borders.fullwidth.css.main.border_radii' ) );
  540.         $fields['border_styles_fullwidth'] = array( 'border' => self::$_->array_get( $this->advanced_fields, 'borders.fullwidth.css.main.border_styles' ) );
  541.         $fields['max_width']               = array( 'max-width' => '%%order_class%%' );
  542.         $fields['width']                   = array( 'width' => '%%order_class%%' );
  543.  
  544.         return $fields;
  545.     }
  546.  
  547.     /**
  548.      * Get blog posts for blog module
  549.      *
  550.      * @param array   arguments that is being used by et_pb_blog
  551.      * @return string blog post markup
  552.      */
  553.     static function get_blog_posts( $args = array(), $conditional_tags = array(), $current_page = array() ) {
  554.         global $paged, $post, $wp_query, $et_fb_processing_shortcode_object, $et_pb_rendering_column_content;
  555.  
  556.         $global_processing_original_value = $et_fb_processing_shortcode_object;
  557.  
  558.         // Default params are combination of attributes that is used by et_pb_blog and
  559.         // conditional tags that need to be simulated (due to AJAX nature) by passing args
  560.         $defaults = array(
  561.             'fullwidth'                     => '',
  562.             'posts_number'                  => '',
  563.             'post_type'                       => '',
  564.             //'include_categories'            => '',
  565.             'meta_date'                     => '',
  566.             'show_thumbnail'                => '',
  567.             'show_content'                  => '',
  568.             'show_author'                   => '',
  569.             'show_date'                     => '',
  570.             'show_categories'               => '',
  571.             'show_comments'                 => '',
  572.             'show_pagination'               => '',
  573.             'background_layout'             => '',
  574.             'show_more'                     => '',
  575.             'offset_number'                 => '',
  576.             'masonry_tile_background_color' => '',
  577.             'overlay_icon_color'            => '',
  578.             'hover_overlay_color'           => '',
  579.             'hover_icon'                    => '',
  580.             'use_overlay'                   => '',
  581.             'header_level'                  => 'h2',
  582.         );
  583.  
  584.         // WordPress' native conditional tag is only available during page load. It'll fail during component update because
  585.         // et_pb_process_computed_property() is loaded in admin-ajax.php. Thus, use WordPress' conditional tags on page load and
  586.         // rely to passed $conditional_tags for AJAX call
  587.         $is_front_page               = et_fb_conditional_tag( 'is_front_page', $conditional_tags );
  588.         $is_search                   = et_fb_conditional_tag( 'is_search', $conditional_tags );
  589.         $is_single                   = et_fb_conditional_tag( 'is_single', $conditional_tags );
  590.         $et_is_builder_plugin_active = et_fb_conditional_tag( 'et_is_builder_plugin_active', $conditional_tags );
  591.         $post_id                     = isset( $current_page['id'] ) ? (int) $current_page['id'] : 0;
  592.  
  593.         $container_is_closed = false;
  594.  
  595.         // remove all filters from WP audio shortcode to make sure current theme doesn't add any elements into audio module
  596.         remove_all_filters( 'wp_audio_shortcode_library' );
  597.         remove_all_filters( 'wp_audio_shortcode' );
  598.         remove_all_filters( 'wp_audio_shortcode_class' );
  599.  
  600.         $args = wp_parse_args( $args, $defaults );
  601.  
  602.         $processed_header_level = et_pb_process_header_level( $args['header_level'], 'h2' );
  603.         $processed_header_level = esc_html( $processed_header_level );
  604.  
  605.         $overlay_output = '';
  606.         $hover_icon = '';
  607.  
  608.         if ( 'on' === $args['use_overlay'] ) {
  609.             $data_icon = '' !== $args['hover_icon']
  610.                 ? sprintf(
  611.                     ' data-icon="%1$s"',
  612.                     esc_attr( et_pb_process_font_icon( $args['hover_icon'] ) )
  613.                 )
  614.                 : '';
  615.  
  616.             $overlay_output = sprintf(
  617.                 '<span class="et_overlay%1$s"%2$s></span>',
  618.                 ( '' !== $args['hover_icon'] ? ' et_pb_inline_icon' : '' ),
  619.                 $data_icon
  620.             );
  621.         }
  622.  
  623.         $overlay_class = 'on' === $args['use_overlay'] ? ' et_pb_has_overlay' : '';
  624.  
  625.         $query_args = array(
  626.             'posts_per_page' => intval( $args['posts_number'] ),
  627.             'post_status'    => 'publish',
  628.  
  629.            
  630.         );
  631.  
  632.         if ( defined( 'DOING_AJAX' ) && isset( $current_page['paged'] ) ) {
  633.             $paged = intval( $current_page['paged'] ); //phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  634.         } else {
  635.             $paged = $is_front_page ? get_query_var( 'page' ) : get_query_var( 'paged' ); //phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  636.         }
  637.  
  638.         // support pagination in VB
  639.         if ( isset( $args['__page'] ) ) {
  640.             $paged = $args['__page']; //phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  641.         }
  642.  
  643.         /*if ( '' !== $args['include_categories'] ) {
  644.             $query_args['cat'] = implode( ',', self::filter_meta_categories( $args['include_categories'], $post_id ) );
  645.         }*/
  646.                
  647.         if ( ! $is_search ) {
  648.             $query_args['paged'] = $paged;
  649.         }
  650.  
  651.         if ( '' !== $args['offset_number'] && ! empty( $args['offset_number'] ) ) {
  652.             /**
  653.              * Offset + pagination don't play well. Manual offset calculation required
  654.              * @see: https://codex.wordpress.org/Making_Custom_Queries_using_Offset_and_Pagination
  655.              */
  656.             if ( $paged > 1 ) {
  657.                 $query_args['offset'] = ( ( $paged - 1 ) * intval( $args['posts_number'] ) ) + intval( $args['offset_number'] );
  658.             } else {
  659.                 $query_args['offset'] = intval( $args['offset_number'] );
  660.             }
  661.         }
  662.  
  663.         if ( $is_single ) {
  664.             $query_args['post__not_in'][] = get_the_ID();
  665.         }
  666.  
  667.         // Get query
  668.         $query = new WP_Query( $query_args );
  669.  
  670.         // Keep page's $wp_query global
  671.         $wp_query_page = $wp_query;
  672.  
  673.         // Turn page's $wp_query into this module's query
  674.         $wp_query = $query; //phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  675.  
  676.         ob_start();
  677.  
  678.         if ( $query->have_posts() ) {
  679.             if ( 'on' !== $args['fullwidth'] ) {
  680.                 echo '<div class="et_pb_salvattore_content" data-columns>';
  681.             }
  682.  
  683.             while( $query->have_posts() ) {
  684.                 $query->the_post();
  685.                 global $et_fb_processing_shortcode_object;
  686.  
  687.                 $global_processing_original_value = $et_fb_processing_shortcode_object;
  688.  
  689.                 // reset the fb processing flag
  690.                 $et_fb_processing_shortcode_object = false;
  691.  
  692.                 $thumb          = '';
  693.                 $width          = 'on' === $args['fullwidth'] ? 1080 : 400;
  694.                 $width          = (int) apply_filters( 'et_pb_blog_image_width', $width );
  695.                 $height         = 'on' === $args['fullwidth'] ? 675 : 250;
  696.                 $height         = (int) apply_filters( 'et_pb_blog_image_height', $height );
  697.                 $classtext      = 'on' === $args['fullwidth'] ? 'et_pb_post_main_image' : '';
  698.                 $titletext      = get_the_title();
  699.                 $thumbnail      = get_thumbnail( $width, $height, $classtext, $titletext, $titletext, false, 'Blogimage' );
  700.                 $thumb          = $thumbnail["thumb"];
  701.                 $no_thumb_class = '' === $thumb || 'off' === $args['show_thumbnail'] ? ' et_pb_no_thumb' : '';
  702.  
  703.                 $post_format = et_pb_post_format();
  704.                 if ( in_array( $post_format, array( 'video', 'gallery' ) ) ) {
  705.                     $no_thumb_class = '';
  706.                 }
  707.  
  708.                 // Print output
  709.                 ?>
  710.                     <article id="" <?php post_class( 'et_pb_post clearfix' . $no_thumb_class . $overlay_class ) ?>>
  711.                         <?php
  712.                             et_divi_post_format_content();
  713.  
  714.                             if ( ! in_array( $post_format, array( 'link', 'audio', 'quote' ) ) ) {
  715.                                 if ( 'video' === $post_format && false !== ( $first_video = et_get_first_video() ) ) :
  716.                                     $video_overlay = has_post_thumbnail() ? sprintf(
  717.                                         '<div class="et_pb_video_overlay" style="background-image: url(%1$s); background-size: cover;">
  718.                                             <div class="et_pb_video_overlay_hover">
  719.                                                 <a href="#" class="et_pb_video_play"></a>
  720.                                             </div>
  721.                                         </div>',
  722.                                         et_core_esc_previously( $thumb )
  723.                                     ) : '';
  724.  
  725.                                     printf(
  726.                                         '<div class="et_main_video_container">
  727.                                             %1$s
  728.                                             %2$s
  729.                                         </div>',
  730.                                         et_core_esc_previously( $video_overlay ),
  731.                                         et_core_esc_previously( $first_video )
  732.                                     );
  733.                                 elseif ( 'gallery' === $post_format ) :
  734.                                     et_pb_gallery_images( 'slider' );
  735.                                 elseif ( '' !== $thumb && 'on' === $args['show_thumbnail'] ) :
  736.                                     if ( 'on' !== $args['fullwidth'] ) echo '<div class="et_pb_image_container">'; ?>
  737.                                         <a href="<?php esc_url( the_permalink() ); ?>" class="entry-featured-image-url">
  738.                                             <?php print_thumbnail( $thumb, $thumbnail["use_timthumb"], $titletext, $width, $height ); ?>
  739.                                             <?php if ( 'on' === $args['use_overlay'] ) {
  740.                                                 echo et_core_esc_previously( $overlay_output );
  741.                                             } ?>
  742.                                         </a>
  743.                                 <?php
  744.                                     if ( 'on' !== $args['fullwidth'] ) echo '</div> <!-- .et_pb_image_container -->';
  745.                                 endif;
  746.                             }
  747.                         ?>
  748.  
  749.                         <?php if ( 'off' === $args['fullwidth'] || ! in_array( $post_format, array( 'link', 'audio', 'quote' ) ) ) { ?>
  750.                             <?php if ( ! in_array( $post_format, array( 'link', 'audio' ) ) ) { ?>
  751.                                 <<?php echo et_core_esc_previously( $processed_header_level ); ?> class="entry-title"><a href="<?php esc_url( the_permalink() ); ?>"><?php the_title(); ?></a></<?php echo et_core_esc_previously( $processed_header_level ); ?>>
  752.                             <?php } ?>
  753.  
  754.                             <?php
  755.                                 if ( 'on' === $args['show_author'] || 'on' === $args['show_date'] || 'on' === $args['show_categories'] || 'on' === $args['show_comments'] ) {
  756.                                     $author = 'on' === $args['show_author']
  757.                                         ? et_get_safe_localization( sprintf( __( 'by %s', 'et_builder' ), '<span class="author vcard">' .  et_pb_get_the_author_posts_link() . '</span>' ) )
  758.                                         : '';
  759.  
  760.                                     $author_separator = 'on' === $args['show_author'] && 'on' === $args['show_date']
  761.                                         ? ' | '
  762.                                         : '';
  763.  
  764.                                     $date = 'on' === $args['show_date']
  765.                                         ? et_get_safe_localization( sprintf( __( '%s', 'et_builder' ), '<span class="published">' . esc_html( get_the_date( $args['meta_date'] ) ) . '</span>' ) )
  766.                                         : '';
  767.  
  768.                                     $date_separator = (( 'on' === $args['show_author'] || 'on' === $args['show_date'] ) && 'on' === $args['show_categories'] )
  769.                                         ? ' | '
  770.                                         : '';
  771.  
  772.                                     $categories = 'on' === $args['show_categories']
  773.                                         ? get_the_category_list(', ')
  774.                                         : '';
  775.  
  776.                                     $categories_separator = (( 'on' === $args['show_author'] || 'on' === $args['show_date'] || 'on' === $args['show_categories'] ) && 'on' === $args['show_comments'])
  777.                                         ? ' | '
  778.                                         : '';
  779.  
  780.                                     $comments = 'on' === $args['show_comments']
  781.                                         ? et_core_maybe_convert_to_utf_8( sprintf( esc_html( _nx( '%s Comment', '%s Comments', get_comments_number(), 'number of comments', 'et_builder' ) ), number_format_i18n( get_comments_number() ) ) )
  782.                                         : '';
  783.  
  784.                                     printf( '<p class="post-meta">%1$s %2$s %3$s %4$s %5$s %6$s %7$s</p>',
  785.                                         et_core_esc_previously( $author ),
  786.                                         et_core_intentionally_unescaped( $author_separator, 'fixed_string' ),
  787.                                         et_core_esc_previously( $date ),
  788.                                         et_core_intentionally_unescaped( $date_separator, 'fixed_string' ),
  789.                                         et_core_esc_wp( $categories ),
  790.                                         et_core_intentionally_unescaped( $categories_separator, 'fixed_string' ),
  791.                                         et_core_esc_previously( $comments )
  792.                                     );
  793.                                 }
  794.  
  795.                                 $post_content = et_strip_shortcodes( et_delete_post_first_video( get_the_content() ), true );
  796.  
  797.                                 // reset the fb processing flag
  798.                                 $et_fb_processing_shortcode_object = false;
  799.                                 // set the flag to indicate that we're processing internal content
  800.                                 $et_pb_rendering_column_content = true;
  801.                                 // reset all the attributes required to properly generate the internal styles
  802.                                 ET_Builder_Element::clean_internal_modules_styles();
  803.  
  804.                                 echo '<div class="post-content">';
  805.  
  806.                                 if ( 'on' === $args['show_content'] ) {
  807.                                     global $more;
  808.  
  809.                                     // page builder doesn't support more tag, so display the_content() in case of post made with page builder
  810.                                     if ( et_pb_is_pagebuilder_used( get_the_ID() ) ) {
  811.                                         $more = 1; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  812.  
  813.                                         echo et_core_intentionally_unescaped( apply_filters( 'the_content', $post_content ), 'html' );
  814.  
  815.                                     } else {
  816.                                         $more = null; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  817.                                         echo et_core_intentionally_unescaped( apply_filters( 'the_content', et_delete_post_first_video( get_the_content( esc_html__( 'read more...', 'et_builder' ) ) ) ), 'html' );
  818.                                     }
  819.                                 } else {
  820.                                     if ( has_excerpt() ) {
  821.                                         the_excerpt();
  822.                                     } else {
  823.                                         if ( '' !== $post_content ) {
  824.                                             // set the $et_fb_processing_shortcode_object to false, to retrieve the content inside truncate_post() correctly
  825.                                             $et_fb_processing_shortcode_object = false;
  826.                                             echo et_core_intentionally_unescaped( wpautop( et_delete_post_first_video( strip_shortcodes( truncate_post( 270, false, '', true ) ) ) ), 'html' );
  827.                                             // reset the $et_fb_processing_shortcode_object to its original value
  828.                                             $et_fb_processing_shortcode_object = $global_processing_original_value;
  829.                                         } else {
  830.                                             echo '';
  831.                                         }
  832.                                     }
  833.                                 }
  834.  
  835.                                 $et_fb_processing_shortcode_object = $global_processing_original_value;
  836.                                 // retrieve the styles for the modules inside Blog content
  837.                                 $internal_style = ET_Builder_Element::get_style( true );
  838.                                 // reset all the attributes after we retrieved styles
  839.                                 ET_Builder_Element::clean_internal_modules_styles( false );
  840.                                 $et_pb_rendering_column_content = false;
  841.                                 // append styles to the blog content
  842.                                 if ( $internal_style ) {
  843.                                     printf(
  844.                                         '<style type="text/css" class="et_fb_blog_inner_content_styles">
  845.                                             %1$s
  846.                                         </style>',
  847.                                         et_core_esc_previously( $internal_style )
  848.                                     );
  849.                                 }
  850.  
  851.                                 if ( 'on' !== $args['show_content'] ) {
  852.                                     $more = 'on' === $args['show_more'] ? sprintf( ' <a href="%1$s" class="more-link" >%2$s</a>' , esc_url( get_permalink() ), esc_html__( 'read more', 'et_builder' ) )  : ''; //phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  853.                                     echo et_core_esc_previously( $more );
  854.                                 }
  855.  
  856.                                 echo '</div>';
  857.                                 ?>
  858.                         <?php } // 'off' === $fullwidth || ! in_array( $post_format, array( 'link', 'audio', 'quote', 'gallery' ?>
  859.                     </article>
  860.                 <?php
  861.  
  862.                 $et_fb_processing_shortcode_object = $global_processing_original_value;
  863.             } // endwhile
  864.  
  865.             if ( 'on' !== $args['fullwidth'] ) {
  866.                 echo '</div>';
  867.             }
  868.  
  869.             if ( 'on' === $args['show_pagination'] && ! $is_search ) {
  870.                 // echo '</div> <!-- .et_pb_posts -->'; // @todo this causes closing tag issue
  871.  
  872.                 $container_is_closed = true;
  873.  
  874.                 if ( function_exists( 'wp_pagenavi' ) ) {
  875.                     wp_pagenavi( array(
  876.                         'query' => $query
  877.                     ) );
  878.                 } else {
  879.                     if ( $et_is_builder_plugin_active ) {
  880.                         include( ET_BUILDER_PLUGIN_DIR . 'includes/navigation.php' );
  881.                     } else {
  882.                         get_template_part( 'includes/navigation', 'index' );
  883.                     }
  884.                 }
  885.             }
  886.  
  887.             wp_reset_query();
  888.         }
  889.  
  890.         wp_reset_postdata();
  891.  
  892.         // Reset $wp_query to its origin
  893.         $wp_query = $wp_query_page; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  894.  
  895.         if ( ! $posts = ob_get_clean() ) {
  896.             $posts = self::get_no_results_template();
  897.         }
  898.  
  899.         return $posts;
  900.     }
  901.  
  902.     function render( $attrs, $content = null, $render_slug ) {
  903.         global $post;
  904.  
  905.         // Stored current global post as variable so global $post variable can be restored
  906.         // to its original state when et_pb_blog shortcode ends to avoid incorrect global $post
  907.         // being used on the page (i.e. blog + shop module in backend builder)
  908.         $post_cache = $post;
  909.  
  910.         /**
  911.          * Cached $wp_filter so it can be restored at the end of the callback.
  912.          * This is needed because this callback uses the_content filter / calls a function
  913.          * which uses the_content filter. WordPress doesn't support nested filter
  914.          */
  915.         global $wp_filter;
  916.         $wp_filter_cache = $wp_filter;
  917.  
  918.         $fullwidth                           = $this->props['fullwidth'];
  919.         $posts_number                        = $this->props['posts_number'];
  920.                 $post_type                              = $this->props['post_type'];
  921.         //$include_categories                  = $this->props['include_categories'];
  922.         $meta_date                           = $this->props['meta_date'];
  923.         $show_thumbnail                      = $this->props['show_thumbnail'];
  924.         $show_content                        = $this->props['show_content'];
  925.         $show_author                         = $this->props['show_author'];
  926.         $show_date                           = $this->props['show_date'];
  927.         $show_categories                     = $this->props['show_categories'];
  928.         $show_comments                       = $this->props['show_comments'];
  929.         $show_pagination                     = $this->props['show_pagination'];
  930.         $background_layout                   = $this->props['background_layout'];
  931.         $background_layout_hover             = et_pb_hover_options()->get_value( 'background_layout', $this->props, 'light' );
  932.         $background_layout_hover_enabled     = et_pb_hover_options()->is_enabled( 'background_layout', $this->props );
  933.         $show_more                           = $this->props['show_more'];
  934.         $offset_number                       = $this->props['offset_number'];
  935.         $masonry_tile_background_color       = $this->props['masonry_tile_background_color'];
  936.         $masonry_tile_background_color_hover = $this->get_hover_value( 'masonry_tile_background_color' );
  937.         $overlay_icon_color                  = $this->props['overlay_icon_color'];
  938.         $hover_overlay_color                 = $this->props['hover_overlay_color'];
  939.         $hover_icon                          = $this->props['hover_icon'];
  940.         $use_overlay                         = $this->props['use_overlay'];
  941.         $header_level                        = $this->props['header_level'];
  942.  
  943.         global $paged;
  944.  
  945.         $video_background          = $this->video_background();
  946.         $parallax_image_background = $this->get_parallax_image_background();
  947.  
  948.         $container_is_closed = false;
  949.  
  950.         $processed_header_level = et_pb_process_header_level( $header_level, 'h2' );
  951.  
  952.         // some themes do not include these styles/scripts so we need to enqueue them in this module to support audio post format
  953.         wp_enqueue_style( 'wp-mediaelement' );
  954.         wp_enqueue_script( 'wp-mediaelement' );
  955.  
  956.         // include easyPieChart which is required for loading Blog module content via ajax correctly
  957.         wp_enqueue_script( 'easypiechart' );
  958.  
  959.         // include ET Shortcode scripts
  960.         wp_enqueue_script( 'et-shortcodes-js' );
  961.  
  962.         // remove all filters from WP audio shortcode to make sure current theme doesn't add any elements into audio module
  963.         remove_all_filters( 'wp_audio_shortcode_library' );
  964.         remove_all_filters( 'wp_audio_shortcode' );
  965.         remove_all_filters( 'wp_audio_shortcode_class' );
  966.  
  967.         if ( '' !== $masonry_tile_background_color ) {
  968.             ET_Builder_Element::set_style( $render_slug, array(
  969.                 'selector'    => '%%order_class%% .et_pb_blog_grid .et_pb_post',
  970.                 'declaration' => sprintf(
  971.                     'background-color: %1$s;',
  972.                     esc_html( $masonry_tile_background_color )
  973.                 ),
  974.             ) );
  975.         }
  976.  
  977.         if ( et_builder_is_hover_enabled( 'masonry_tile_background_color', $this->props ) ) {
  978.             ET_Builder_Element::set_style( $render_slug, array(
  979.                 'selector'    => '%%order_class%%:hover .et_pb_blog_grid .et_pb_post',
  980.                 'declaration' => sprintf(
  981.                     'background-color: %1$s;',
  982.                     esc_html( $masonry_tile_background_color_hover )
  983.                 ),
  984.             ) );
  985.         }
  986.  
  987.         if ( '' !== $overlay_icon_color ) {
  988.             ET_Builder_Element::set_style( $render_slug, array(
  989.                 'selector'    => '%%order_class%% .et_overlay:before',
  990.                 'declaration' => sprintf(
  991.                     'color: %1$s !important;',
  992.                     esc_html( $overlay_icon_color )
  993.                 ),
  994.             ) );
  995.         }
  996.  
  997.         if ( '' !== $hover_overlay_color ) {
  998.             ET_Builder_Element::set_style( $render_slug, array(
  999.                 'selector'    => '%%order_class%% .et_overlay',
  1000.                 'declaration' => sprintf(
  1001.                     'background-color: %1$s;',
  1002.                     esc_html( $hover_overlay_color )
  1003.                 ),
  1004.             ) );
  1005.         }
  1006.  
  1007.         if ( 'on' === $use_overlay ) {
  1008.             $data_icon = '' !== $hover_icon
  1009.                 ? sprintf(
  1010.                     ' data-icon="%1$s"',
  1011.                     esc_attr( et_pb_process_font_icon( $hover_icon ) )
  1012.                 )
  1013.                 : '';
  1014.  
  1015.             $overlay_output = sprintf(
  1016.                 '<span class="et_overlay%1$s"%2$s></span>',
  1017.                 ( '' !== $hover_icon ? ' et_pb_inline_icon' : '' ),
  1018.                 $data_icon
  1019.             );
  1020.         }
  1021.  
  1022.         $overlay_class = 'on' === $use_overlay ? ' et_pb_has_overlay' : '';
  1023.  
  1024.         if ( 'on' !== $fullwidth ){
  1025.             wp_enqueue_script( 'salvattore' );
  1026.  
  1027.             $background_layout = 'light';
  1028.         }
  1029.  
  1030.         $args = array( 'posts_per_page' => (int) $posts_number );
  1031.  
  1032.         $et_paged = is_front_page() ? get_query_var( 'page' ) : get_query_var( 'paged' );
  1033.  
  1034.         if ( is_front_page() ) {
  1035.             $paged = $et_paged; //phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  1036.         }
  1037.  
  1038.         /*if ( '' !== $include_categories ) {
  1039.             $args['cat'] = implode( ',', self::filter_meta_categories( $include_categories, $this->get_the_ID() ) );
  1040.         }*/
  1041.                
  1042.         if ( ! is_search() ) {
  1043.             $args['paged'] = $et_paged;
  1044.         }
  1045.  
  1046.         if ( '' !== $offset_number && ! empty( $offset_number ) ) {
  1047.             /**
  1048.              * Offset + pagination don't play well. Manual offset calculation required
  1049.              * @see: https://codex.wordpress.org/Making_Custom_Queries_using_Offset_and_Pagination
  1050.              */
  1051.             if ( $paged > 1 ) {
  1052.                 $args['offset'] = ( ( $et_paged - 1 ) * intval( $posts_number ) ) + intval( $offset_number );
  1053.             } else {
  1054.                 $args['offset'] = intval( $offset_number );
  1055.             }
  1056.         }
  1057.  
  1058.         if ( is_single() && ! isset( $args['post__not_in'] ) ) {
  1059.             $args['post__not_in'] = array( get_the_ID() );
  1060.         }
  1061.  
  1062.         // Images: Add CSS Filters and Mix Blend Mode rules (if set)
  1063.         if ( array_key_exists( 'image', $this->advanced_fields ) && array_key_exists( 'css', $this->advanced_fields['image'] ) ) {
  1064.             $this->add_classname( $this->generate_css_filters(
  1065.                 $render_slug,
  1066.                 'child_',
  1067.                 self::$data_utils->array_get( $this->advanced_fields['image']['css'], 'main', '%%order_class%%' )
  1068.             ) );
  1069.         }
  1070. //added post type array
  1071. $args['post_type'] = $post_type;
  1072.         ob_start();
  1073.  
  1074.         query_posts( $args );
  1075.  
  1076.         if ( have_posts() ) {
  1077.             if ( 'off' === $fullwidth ) {
  1078.                 echo '<div class="et_pb_salvattore_content" data-columns>';
  1079.             }
  1080.  
  1081.             while ( have_posts() ) {
  1082.                 the_post();
  1083.  
  1084.                 global $post;
  1085.  
  1086.                 $post_format = et_pb_post_format();
  1087.  
  1088.                 $thumb = '';
  1089.  
  1090.                 $width = 'on' === $fullwidth ? 1080 : 400;
  1091.                 $width = (int) apply_filters( 'et_pb_blog_image_width', $width );
  1092.  
  1093.                 $height = 'on' === $fullwidth ? 675 : 250;
  1094.                 $height = (int) apply_filters( 'et_pb_blog_image_height', $height );
  1095.                 $classtext = 'on' === $fullwidth ? 'et_pb_post_main_image' : '';
  1096.                 $titletext = get_the_title();
  1097.                 $thumbnail = get_thumbnail( $width, $height, $classtext, $titletext, $titletext, false, 'Blogimage' );
  1098.                 $thumb = $thumbnail['thumb'];
  1099.  
  1100.                 $no_thumb_class = '' === $thumb || 'off' === $show_thumbnail ? ' et_pb_no_thumb' : '';
  1101.  
  1102.                 if ( in_array( $post_format, array( 'video', 'gallery' ) ) ) {
  1103.                     $no_thumb_class = '';
  1104.                 }
  1105.                 ?>
  1106.  
  1107.             <article id="post-<?php the_ID(); ?>" <?php post_class( 'et_pb_post clearfix' . $no_thumb_class . $overlay_class  ); ?>>
  1108.  
  1109.             <?php
  1110.                 et_divi_post_format_content();
  1111.  
  1112.                 if ( ! in_array( $post_format, array( 'link', 'audio', 'quote' ) ) || post_password_required( $post ) ) {
  1113.                     if ( 'video' === $post_format && false !== ( $first_video = et_get_first_video() ) ) :
  1114.                         $video_overlay = has_post_thumbnail() ? sprintf(
  1115.                             '<div class="et_pb_video_overlay" style="background-image: url(%1$s); background-size: cover;">
  1116.                                 <div class="et_pb_video_overlay_hover">
  1117.                                     <a href="#" class="et_pb_video_play"></a>
  1118.                                 </div>
  1119.                             </div>',
  1120.                             $thumb
  1121.                         ) : '';
  1122.  
  1123.                         printf(
  1124.                             '<div class="et_main_video_container">
  1125.                                 %1$s
  1126.                                 %2$s
  1127.                             </div>',
  1128.                             et_core_esc_previously( $video_overlay ),
  1129.                             et_core_esc_previously( $first_video )
  1130.                         );
  1131.                     elseif ( 'gallery' === $post_format ) :
  1132.                         et_pb_gallery_images( 'slider' );
  1133.                     elseif ( '' !== $thumb && 'on' === $show_thumbnail ) :
  1134.                         if ( 'on' !== $fullwidth ) {
  1135.                             echo '<div class="et_pb_image_container">';
  1136.                         }
  1137.                         ?>
  1138.                             <a href="<?php esc_url( the_permalink() ); ?>" class="entry-featured-image-url">
  1139.                                 <?php print_thumbnail( $thumb, $thumbnail["use_timthumb"], $titletext, $width, $height ); ?>
  1140.                                 <?php if ( 'on' === $use_overlay ) {
  1141.                                     echo et_core_esc_previously( $overlay_output );
  1142.                                 } ?>
  1143.                             </a>
  1144.                     <?php
  1145.                         if ( 'on' !== $fullwidth ) echo '</div> <!-- .et_pb_image_container -->';
  1146.                     endif;
  1147.                 } ?>
  1148.  
  1149.             <?php if ( 'off' === $fullwidth || ! in_array( $post_format, array( 'link', 'audio', 'quote' ) ) || post_password_required( $post ) ) { ?>
  1150.                 <?php if ( ! in_array( $post_format, array( 'link', 'audio' ) ) || post_password_required( $post ) ) { ?>
  1151.                     <<?php echo et_core_intentionally_unescaped( $processed_header_level, 'fixed_string' ); ?> class="entry-title"><a href="<?php esc_url( the_permalink() ); ?>"><?php the_title(); ?></a></<?php echo et_core_intentionally_unescaped( $processed_header_level, 'fixed_string' ); ?>>
  1152.                 <?php } ?>
  1153.  
  1154.                 <?php
  1155.                     if ( 'on' === $show_author || 'on' === $show_date || 'on' === $show_categories || 'on' === $show_comments ) {
  1156.                         $author = 'on' === $show_author
  1157.                             ? et_get_safe_localization( sprintf( __( 'by %s', 'et_builder' ), '<span class="author vcard">' .  et_pb_get_the_author_posts_link() . '</span>' ) )
  1158.                             : '';
  1159.  
  1160.                         $author_separator = 'on' === $show_author && 'on' === $show_date
  1161.                             ? ' | '
  1162.                             : '';
  1163.  
  1164.                         $date = 'on' === $show_date
  1165.                             ? et_get_safe_localization( sprintf( __( '%s', 'et_builder' ), '<span class="published">' . esc_html( get_the_date( $meta_date ) ) . '</span>' ) )
  1166.                             : '';
  1167.  
  1168.                         $date_separator = (( 'on' === $show_author || 'on' === $show_date ) && 'on' === $show_categories )
  1169.                             ? ' | '
  1170.                             : '';
  1171.  
  1172.                         $categories = 'on' === $show_categories
  1173.                             ? get_the_category_list(', ')
  1174.                             : '';
  1175.  
  1176.                         $categories_separator = (( 'on' === $show_author || 'on' === $show_date || 'on' === $show_categories ) && 'on' === $show_comments)
  1177.                             ? ' | '
  1178.                             : '';
  1179.  
  1180.                         $comments = 'on' === $show_comments
  1181.                             ? sprintf( esc_html( _nx( '%s Comment', '%s Comments', get_comments_number(), 'number of comments', 'et_builder' ) ), number_format_i18n( get_comments_number() ) )
  1182.                             : '';
  1183.  
  1184.                         printf( '<p class="post-meta">%1$s %2$s %3$s %4$s %5$s %6$s %7$s</p>',
  1185.                             et_core_esc_previously( $author ),
  1186.                             et_core_intentionally_unescaped( $author_separator, 'fixed_string' ),
  1187.                             et_core_esc_previously( $date ),
  1188.                             et_core_intentionally_unescaped( $date_separator, 'fixed_string' ),
  1189.                             et_core_esc_wp( $categories ),
  1190.                             et_core_intentionally_unescaped( $categories_separator, 'fixed_string' ),
  1191.                             et_core_esc_previously( $comments )
  1192.                         );
  1193.                     }
  1194.  
  1195.                     echo '<div class="post-content">';
  1196.                     global $et_pb_rendering_column_content;
  1197.  
  1198.                     $post_content = et_strip_shortcodes( et_delete_post_first_video( get_the_content() ), true );
  1199.  
  1200.                     $et_pb_rendering_column_content = true;
  1201.  
  1202.                     if ( 'on' === $show_content ) {
  1203.                         global $more;
  1204.  
  1205.                         // page builder doesn't support more tag, so display the_content() in case of post made with page builder
  1206.                         if ( et_pb_is_pagebuilder_used( get_the_ID() ) ) {
  1207.                             $more = 1; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  1208.                             echo et_core_intentionally_unescaped( apply_filters( 'the_content', $post_content ), 'html' );
  1209.                         } else {
  1210.                             $more = null; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  1211.                             echo et_core_intentionally_unescaped( apply_filters( 'the_content', et_delete_post_first_video( get_the_content( esc_html__( 'read more...', 'et_builder' ) ) ) ), 'html' );
  1212.                         }
  1213.                     } else {
  1214.                         if ( has_excerpt() ) {
  1215.                             the_excerpt();
  1216.                         } else {
  1217.                             echo et_core_intentionally_unescaped( wpautop( et_delete_post_first_video( strip_shortcodes( truncate_post( 270, false, '', true ) ) ) ), 'html' );
  1218.                         }
  1219.                     }
  1220.  
  1221.                     $et_pb_rendering_column_content = false;
  1222.  
  1223.                     if ( 'on' !== $show_content ) {
  1224.                         $more = 'on' === $show_more ? sprintf( ' <a href="%1$s" class="more-link" >%2$s</a>' , esc_url( get_permalink() ), esc_html__( 'read more', 'et_builder' ) )  : ''; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  1225.                         echo et_core_esc_previously( $more );
  1226.                     }
  1227.  
  1228.                     echo '</div>';
  1229.                     ?>
  1230.             <?php } // 'off' === $fullwidth || ! in_array( $post_format, array( 'link', 'audio', 'quote', 'gallery' ?>
  1231.  
  1232.             </article> <!-- .et_pb_post -->
  1233.     <?php
  1234.             } // endwhile
  1235.  
  1236.             if ( 'off' === $fullwidth ) {
  1237.                 echo '</div><!-- .et_pb_salvattore_content -->';
  1238.             }
  1239.  
  1240.             if ( 'on' === $show_pagination && ! is_search() ) {
  1241.                 if ( function_exists( 'wp_pagenavi' ) ) {
  1242.                     wp_pagenavi();
  1243.                 } else {
  1244.                     if ( et_is_builder_plugin_active() ) {
  1245.                         include( ET_BUILDER_PLUGIN_DIR . 'includes/navigation.php' );
  1246.                     } else {
  1247.                         get_template_part( 'includes/navigation', 'index' );
  1248.                     }
  1249.                 }
  1250.  
  1251.                 echo '</div> <!-- .et_pb_posts -->';
  1252.  
  1253.                 $container_is_closed = true;
  1254.             }
  1255.         } else {
  1256.             if ( et_is_builder_plugin_active() ) {
  1257.                 include( ET_BUILDER_PLUGIN_DIR . 'includes/no-results.php' );
  1258.             } else {
  1259.                 get_template_part( 'includes/no-results', 'index' );
  1260.             }
  1261.         }
  1262.  
  1263.         wp_reset_query();
  1264.  
  1265.         $posts = ob_get_contents();
  1266.  
  1267.         ob_end_clean();
  1268.  
  1269.         // Remove automatically added classnames
  1270.         $this->remove_classname( array(
  1271.             $render_slug,
  1272.         ) );
  1273.  
  1274.         $data_background_layout       = '';
  1275.         $data_background_layout_hover = '';
  1276.  
  1277.         if ( $background_layout_hover_enabled ) {
  1278.             $data_background_layout = sprintf(
  1279.                 ' data-background-layout="%1$s"',
  1280.                 esc_attr( $background_layout )
  1281.             );
  1282.             $data_background_layout_hover = sprintf(
  1283.                 ' data-background-layout-hover="%1$s"',
  1284.                 esc_attr( $background_layout_hover )
  1285.             );
  1286.         }
  1287.  
  1288.         if ( 'on' !== $fullwidth ) {
  1289.             // Module classname
  1290.             $this->add_classname( array(
  1291.                 'et_pb_blog_grid_wrapper',
  1292.             ) );
  1293.  
  1294.             // Remove auto-added classname for module wrapper because on grid mode these classnames
  1295.             // are placed one level below module wrapper
  1296.             $this->remove_classname( array(
  1297.                 'et_pb_section_video',
  1298.                 'et_pb_preload',
  1299.                 'et_pb_section_parallax',
  1300.             ) );
  1301.  
  1302.             // Inner module wrapper classname
  1303.             $inner_wrap_classname = array(
  1304.                 'et_pb_blog_grid',
  1305.                 'clearfix',
  1306.                 "et_pb_bg_layout_{$background_layout}",
  1307.                 $this->get_text_orientation_classname(),
  1308.             );
  1309.  
  1310.             if ( '' !== $video_background ) {
  1311.                 $inner_wrap_classname[] = 'et_pb_section_video';
  1312.                 $inner_wrap_classname[] = 'et_pb_preload';
  1313.             }
  1314.  
  1315.             if ( '' !== $parallax_image_background ) {
  1316.                 $inner_wrap_classname[] = 'et_pb_section_parallax';
  1317.             }
  1318.  
  1319.             $output = sprintf(
  1320.                 '<div%4$s class="%5$s"%9$s%10$s>
  1321.                     <div class="%1$s">
  1322.                     %7$s
  1323.                     %6$s
  1324.                     <div class="et_pb_ajax_pagination_container">
  1325.                         %2$s
  1326.                     </div>
  1327.                     %3$s %8$s
  1328.                 </div>',
  1329.                 esc_attr( implode( ' ', $inner_wrap_classname ) ),
  1330.                 $posts,
  1331.                 ( ! $container_is_closed ? '</div> <!-- .et_pb_posts -->' : '' ),
  1332.                 $this->module_id(),
  1333.                 $this->module_classname( $render_slug ), // #5
  1334.                 $video_background,
  1335.                 $parallax_image_background,
  1336.                 $this->drop_shadow_back_compatibility( $render_slug ),
  1337.                 et_core_esc_previously( $data_background_layout ),
  1338.                 et_core_esc_previously( $data_background_layout_hover ) // #10
  1339.             );
  1340.         } else {
  1341.             // Module classname
  1342.             $this->add_classname( array(
  1343.                 'et_pb_posts',
  1344.                 "et_pb_bg_layout_{$background_layout}",
  1345.                 $this->get_text_orientation_classname(),
  1346.             ) );
  1347.  
  1348.             $output = sprintf(
  1349.                 '<div%4$s class="%1$s"%8$s%9$s>
  1350.                 %6$s
  1351.                 %5$s
  1352.                 <div class="et_pb_ajax_pagination_container">
  1353.                     %2$s
  1354.                 </div>
  1355.                 %3$s %7$s',
  1356.                 $this->module_classname( $render_slug ),
  1357.                 $posts,
  1358.                 ( ! $container_is_closed ? '</div> <!-- .et_pb_posts -->' : '' ),
  1359.                 $this->module_id(),
  1360.                 $video_background, // #5
  1361.                 $parallax_image_background,
  1362.                 $this->drop_shadow_back_compatibility( $render_slug ),
  1363.                 et_core_esc_previously( $data_background_layout ),
  1364.                 et_core_esc_previously( $data_background_layout_hover )
  1365.             );
  1366.         }
  1367.  
  1368.         // Restore $wp_filter
  1369.         $wp_filter = $wp_filter_cache; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  1370.         unset($wp_filter_cache);
  1371.  
  1372.         // Restore global $post into its original state when et_pb_blog shortcode ends to avoid
  1373.         // the rest of the page uses incorrect global $post variable
  1374.         $post = $post_cache; // phpcs:ignore WordPress.Variables.GlobalVariables.OverrideProhibited
  1375.  
  1376.         return $output;
  1377.     }
  1378.  
  1379.     public function process_box_shadow( $function_name ) {
  1380.         if ( isset( $this->props['fullwidth'] ) && $this->props['fullwidth'] === 'off' ) {
  1381.             $this->advanced_fields['box_shadow'] = array(
  1382.                 'default' => array(
  1383.                     'css' => array(
  1384.                         'main'         => '%%order_class%% article.et_pb_post',
  1385.                         'overlay'      => "inset",
  1386.                     ),
  1387.                 ),
  1388.             );
  1389.         }
  1390.  
  1391.         parent::process_box_shadow( $function_name );
  1392.     }
  1393.  
  1394.     /**
  1395.      * Since the styling file is not updated until the author updates the page/post,
  1396.      * we should keep the drop shadow visible.
  1397.      *
  1398.      * @param string $functions_name
  1399.      *
  1400.      * @return string
  1401.      */
  1402.     private function drop_shadow_back_compatibility( $functions_name ) {
  1403.         $utils = ET_Core_Data_Utils::instance();
  1404.         $atts  = $this->props;
  1405.  
  1406.         if (
  1407.             version_compare( $utils->array_get( $atts, '_builder_version', '3.0.93' ), '3.0.94', 'lt' )
  1408.             &&
  1409.             'on' !== $utils->array_get( $atts, 'fullwidth' )
  1410.             &&
  1411.             'on' === $utils->array_get( $atts, 'use_dropshadow' )
  1412.         ) {
  1413.             $class = self::get_module_order_class( $functions_name );
  1414.  
  1415.             return sprintf(
  1416.                 '<style>%1$s</style>',
  1417.                 sprintf( '.%1$s  article.et_pb_post { box-shadow: 0 1px 5px rgba(0,0,0,.1) }', esc_html( $class ) )
  1418.             );
  1419.         }
  1420.  
  1421.         return '';
  1422.     }
  1423. }
  1424.  
  1425. new CF_CPT_Blog_Module;
Add Comment
Please, Sign In to add comment