Plugin Directory

Changeset 3088867


Ignore:
Timestamp:
05/19/2024 05:21:09 AM (23 months ago)
Author:
dynamicweblab
Message:

tagging version 1.0.1

Location:
dynamic-post-grid-elementor-addon
Files:
5 edited
11 copied

Legend:

Unmodified
Added
Removed
  • dynamic-post-grid-elementor-addon/tags/1.0.1/dynamic-post-grid.php

    r3085935 r3088867  
    44 * Requires Plugins: elementor
    55 * Description: Elementor page builder addon to display posts in a grid. Useful for generating post grid from your blog posts with multiple options.
    6  * Version: 1.0.0
    7  * Author: Dynamic Web Lab
     6 * Version: 1.0.1
     7 * Author: DynamicWebLab
    88 * Author URI: https://dynamicweblab.com/
    99 * Text Domain: dynamic-post-grid
     
    1414if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    1515
    16 define( 'DPGEA_VERSION', '1.0.0' );
     16define( 'DPGEA_VERSION', '1.0.1' );
    1717define( 'DPGEA_SLUG', 'dynamic-post-grid' );
    1818define( 'DPGEA_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
  • dynamic-post-grid-elementor-addon/tags/1.0.1/readme.txt

    r3085935 r3088867  
    11=== Dynamic Post Grid Elementor Addon ===
    2 Contributors: mislam,dynamicweblab
     2Contributors: maidulcu,dynamicweblab
    33Tags: post grid, blog post grid, post grid for elementor, elementor addons, post grids
    44Requires at least: 5.0
    55Tested up to: 6.5.3
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    1313== Description ==
    1414
    15 Dynamic Post Grid Plugin is user-friendly and can be used as an Elementor Add-on. This Post Grid Plugin allows you to create 3 different styles: <b>Grid, List, and Slider</b> view effortlessly.
     15Dynamic Post Grid Plugin is user-friendly and can be used as an Elementor Add-on. This Post Grid Plugin allows you to create 3 different styles: **Grid, List, and Slider** view effortlessly.
    1616
    1717[Grid Demo](https://dynamicweblab.com/demo/plugins/post-grid-demo/") | [List Demo](https://dynamicweblab.com/demo/plugins/post-list-demo/) | [Slider Demo](https://dynamicweblab.com/demo/plugins/post-slider-demo/)
    1818
    19 🏆 <b>Dynamic Post Grid Elementor Add-on</b> 🏆
     19🏆 **Dynamic Post Grid Elementor Add-on** 🏆
    2020
    2121Dynamic Post Grid Elementor Add-on is a powerful plugin designed to enhance the functionality of the Elementor page builder. With its intuitive interface and robust features, this widget empowers users to create dynamic and visually stunning post grids effortlessly.
     
    2727
    2828
    29 🏆 <b>Dynamic Post Grid Layout Styles</b> 🏆
     29🏆 **Dynamic Post Grid Layout Styles** 🏆
    3030
    31 There are a total <b>3</b> available styles including it has 7 additional layout variations, Grid Layout it is 3 layout variations, List layout has 2 layout variations and Slider layout has 2 layout variations. All Grid, List and Slider layouts are responsive for all the different screen sizes.
     31There are a total **3** available styles including it has 7 additional layout variations, Grid Layout it is 3 layout variations, List layout has 2 layout variations and Slider layout has 2 layout variations. All Grid, List and Slider layouts are responsive for all the different screen sizes.
    3232
    3333This powerful plugin puts you in control of your content curation. Fetch any post, page, or custom post type with flexible filters and sorting. Handpick what content items are showcased from available options. Elevate your presentation with a choice of list, grid, or slider views, each customizable to suit your style.
    3434
    35 🏆 <b>Dynamic Post Grid Features</b> 🏆
     35🏆 **Dynamic Post Grid Features** 🏆
    3636
    37 * <b>No Coding Skills Needed:</b> This is very direct about the lack of coding requirement.
    38 * <b>User-Friendly Interface:</b> This emphasizes that the interface itself is designed for ease of use.
    39 * <b>Make It Yours with Easy Customization:</b> This has a friendly, inviting tone, emphasizing personalization.
    40 * <b>Instant Results, Every Time:</b> This focuses on the benefit of speed (getting what you need quickly).
    41 * <b>Made for Page Builder:</b> Display any post types to page builder easily. Smart Post Show is made to work with Page Builders like Elementor page builder.
    42 * <b>Your Content, Optimized for Every Screen:</b> This positions responsiveness as a key feature of the plugin.
     37* **No Coding Skills Needed:** This is very direct about the lack of coding requirement.
     38* **User-Friendly Interface:** This emphasizes that the interface itself is designed for ease of use.
     39* **Make It Yours with Easy Customization:** This has a friendly, inviting tone, emphasizing personalization.
     40* **Instant Results, Every Time:** This focuses on the benefit of speed (getting what you need quickly).
     41* **Made for Page Builder:** Display any post types to page builder easily. Smart Post Show is made to work with Page Builders like Elementor page builder.
     42* **Your Content, Optimized for Every Screen:** This positions responsiveness as a key feature of the plugin.
    4343
    4444
     
    7272== Changelog ==
    7373
     74= 1.0.1 =
     75* Update read me
     76* [Improvment] Comments few methods
     77
    7478= 1.0.0 =
    7579* Initial release
  • dynamic-post-grid-elementor-addon/tags/1.0.1/widgets/post-grid.php

    r3085935 r3088867  
    1717class Post_Grid_Widget extends Widget_Base {
    1818
     19    /**
     20     * Retrieves the name of the blog posts.
     21     *
     22     * @return string The name of the blog posts.
     23     */
    1924    public function get_name() {
    2025        return 'depg-blog-posts';
     
    6166    }
    6267
     68    /**
     69     * Retrieves all taxonomy terms for a given taxonomy.
     70     *
     71     * @param string $taxonomy The taxonomy to retrieve terms for. Defaults to 'category'.
     72     * @return array An associative array of term IDs as keys and term names as values.
     73     */
    6374    private function get_all_taxonomy( $taxonomy = 'category' ) {
    6475
  • dynamic-post-grid-elementor-addon/trunk/dynamic-post-grid.php

    r3085935 r3088867  
    44 * Requires Plugins: elementor
    55 * Description: Elementor page builder addon to display posts in a grid. Useful for generating post grid from your blog posts with multiple options.
    6  * Version: 1.0.0
    7  * Author: Dynamic Web Lab
     6 * Version: 1.0.1
     7 * Author: DynamicWebLab
    88 * Author URI: https://dynamicweblab.com/
    99 * Text Domain: dynamic-post-grid
     
    1414if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    1515
    16 define( 'DPGEA_VERSION', '1.0.0' );
     16define( 'DPGEA_VERSION', '1.0.1' );
    1717define( 'DPGEA_SLUG', 'dynamic-post-grid' );
    1818define( 'DPGEA_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
  • dynamic-post-grid-elementor-addon/trunk/readme.txt

    r3085935 r3088867  
    11=== Dynamic Post Grid Elementor Addon ===
    2 Contributors: mislam,dynamicweblab
     2Contributors: maidulcu,dynamicweblab
    33Tags: post grid, blog post grid, post grid for elementor, elementor addons, post grids
    44Requires at least: 5.0
    55Tested up to: 6.5.3
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    1313== Description ==
    1414
    15 Dynamic Post Grid Plugin is user-friendly and can be used as an Elementor Add-on. This Post Grid Plugin allows you to create 3 different styles: <b>Grid, List, and Slider</b> view effortlessly.
     15Dynamic Post Grid Plugin is user-friendly and can be used as an Elementor Add-on. This Post Grid Plugin allows you to create 3 different styles: **Grid, List, and Slider** view effortlessly.
    1616
    1717[Grid Demo](https://dynamicweblab.com/demo/plugins/post-grid-demo/") | [List Demo](https://dynamicweblab.com/demo/plugins/post-list-demo/) | [Slider Demo](https://dynamicweblab.com/demo/plugins/post-slider-demo/)
    1818
    19 🏆 <b>Dynamic Post Grid Elementor Add-on</b> 🏆
     19🏆 **Dynamic Post Grid Elementor Add-on** 🏆
    2020
    2121Dynamic Post Grid Elementor Add-on is a powerful plugin designed to enhance the functionality of the Elementor page builder. With its intuitive interface and robust features, this widget empowers users to create dynamic and visually stunning post grids effortlessly.
     
    2727
    2828
    29 🏆 <b>Dynamic Post Grid Layout Styles</b> 🏆
     29🏆 **Dynamic Post Grid Layout Styles** 🏆
    3030
    31 There are a total <b>3</b> available styles including it has 7 additional layout variations, Grid Layout it is 3 layout variations, List layout has 2 layout variations and Slider layout has 2 layout variations. All Grid, List and Slider layouts are responsive for all the different screen sizes.
     31There are a total **3** available styles including it has 7 additional layout variations, Grid Layout it is 3 layout variations, List layout has 2 layout variations and Slider layout has 2 layout variations. All Grid, List and Slider layouts are responsive for all the different screen sizes.
    3232
    3333This powerful plugin puts you in control of your content curation. Fetch any post, page, or custom post type with flexible filters and sorting. Handpick what content items are showcased from available options. Elevate your presentation with a choice of list, grid, or slider views, each customizable to suit your style.
    3434
    35 🏆 <b>Dynamic Post Grid Features</b> 🏆
     35🏆 **Dynamic Post Grid Features** 🏆
    3636
    37 * <b>No Coding Skills Needed:</b> This is very direct about the lack of coding requirement.
    38 * <b>User-Friendly Interface:</b> This emphasizes that the interface itself is designed for ease of use.
    39 * <b>Make It Yours with Easy Customization:</b> This has a friendly, inviting tone, emphasizing personalization.
    40 * <b>Instant Results, Every Time:</b> This focuses on the benefit of speed (getting what you need quickly).
    41 * <b>Made for Page Builder:</b> Display any post types to page builder easily. Smart Post Show is made to work with Page Builders like Elementor page builder.
    42 * <b>Your Content, Optimized for Every Screen:</b> This positions responsiveness as a key feature of the plugin.
     37* **No Coding Skills Needed:** This is very direct about the lack of coding requirement.
     38* **User-Friendly Interface:** This emphasizes that the interface itself is designed for ease of use.
     39* **Make It Yours with Easy Customization:** This has a friendly, inviting tone, emphasizing personalization.
     40* **Instant Results, Every Time:** This focuses on the benefit of speed (getting what you need quickly).
     41* **Made for Page Builder:** Display any post types to page builder easily. Smart Post Show is made to work with Page Builders like Elementor page builder.
     42* **Your Content, Optimized for Every Screen:** This positions responsiveness as a key feature of the plugin.
    4343
    4444
     
    7272== Changelog ==
    7373
     74= 1.0.1 =
     75* Update read me
     76* [Improvment] Comments few methods
     77
    7478= 1.0.0 =
    7579* Initial release
  • dynamic-post-grid-elementor-addon/trunk/widgets/post-grid.php

    r3085935 r3088867  
    1717class Post_Grid_Widget extends Widget_Base {
    1818
     19    /**
     20     * Retrieves the name of the blog posts.
     21     *
     22     * @return string The name of the blog posts.
     23     */
    1924    public function get_name() {
    2025        return 'depg-blog-posts';
     
    6166    }
    6267
     68    /**
     69     * Retrieves all taxonomy terms for a given taxonomy.
     70     *
     71     * @param string $taxonomy The taxonomy to retrieve terms for. Defaults to 'category'.
     72     * @return array An associative array of term IDs as keys and term names as values.
     73     */
    6374    private function get_all_taxonomy( $taxonomy = 'category' ) {
    6475
Note: See TracChangeset for help on using the changeset viewer.