Plugin Directory

Changeset 2694533


Ignore:
Timestamp:
03/16/2022 01:14:58 AM (4 years ago)
Author:
soliddigital
Message:

Version 1.1.0 - new menu dynamic tag

Location:
solid-dynamics
Files:
8 added
2 edited
7 copied

Legend:

Unmodified
Added
Removed
  • solid-dynamics/tags/1.1.0/trunk/readme.txt

    r2549880 r2694533  
    22Contributors: soliddigital,lukechinworth,peterajtai
    33Tags: elementor, dynamic tags, jet engine, macros
    4 Tested up to: 5.7.2
    5 Stable tag: 1.0.0
     4Tested up to: 5.9.2
     5Stable tag: 1.1.0
    66License: GPLv2
    77
     
    1010== Description ==
    1111
    12 This plugin provides wrapper elementor dynamic tags and jet engine macros to allow you to call any function you want. Write the function in functions.php, then call it from elementor. Helpful for teams of developers and designers working together.
     12This plugin provides several dynamic tags. They're all found under the "Solid Dynamics" section.
     13
     14- `Custom Callback`: An Elementor dynamic tag and jet engine macro to allow you to call any function you want. Write the function in functions.php, then call it from Elementor. Helpful for teams of developers and designers working together.
     15- `Menu`: Returns the ids of the post of a specific menu id
     16- `Parent Meta`: Retrieves the meta value of the parent post based on the entered meta key
    1317
    1418Also, the plugin passes the current post as the first argument to the function, helpful for built-in wp functions that take the post as the first argument.
     
    2226
    23271. Custom Callback Dynamic Tag using the wp function `wp_get_post_parent_id`.
     282. Custom Menu Dynamic Tag
     293. The various Dynamic Tag options
    2430
    2531== Changelog ==
  • solid-dynamics/tags/1.1.0/trunk/solid-dynamics.php

    r2549880 r2694533  
    44 * Plugin Name:       Solid Dynamics
    55 * Description:       Custom callbacks for elementor dynamic tags and jet engine macros.
    6  * Version:           1.0.0
     6 * Version:           1.1.0
    77 * Author:            Solid Digital
    88 * Author URI:        https://www.soliddigital.com
     
    3030    include_once( __DIR__ . "/classes/parent-meta-image.php" );
    3131    include_once( __DIR__ . "/classes/custom-callback.php" );
     32    include_once( __DIR__ . "/classes/menu.php" );
    3233
    3334    // Finally register the tag
     
    3536    $dynamic_tags->register_tag( '\Solid\ParentMetaImage' );
    3637    $dynamic_tags->register_tag( '\Solid\CustomCallback' );
     38    $dynamic_tags->register_tag( '\Solid\Menu' );
    3739} );
    3840
  • solid-dynamics/trunk/readme.txt

    r2549880 r2694533  
    22Contributors: soliddigital,lukechinworth,peterajtai
    33Tags: elementor, dynamic tags, jet engine, macros
    4 Tested up to: 5.7.2
    5 Stable tag: 1.0.0
     4Tested up to: 5.9.2
     5Stable tag: 1.1.0
    66License: GPLv2
    77
     
    1010== Description ==
    1111
    12 This plugin provides wrapper elementor dynamic tags and jet engine macros to allow you to call any function you want. Write the function in functions.php, then call it from elementor. Helpful for teams of developers and designers working together.
     12This plugin provides several dynamic tags. They're all found under the "Solid Dynamics" section.
     13
     14- `Custom Callback`: An Elementor dynamic tag and jet engine macro to allow you to call any function you want. Write the function in functions.php, then call it from Elementor. Helpful for teams of developers and designers working together.
     15- `Menu`: Returns the ids of the post of a specific menu id
     16- `Parent Meta`: Retrieves the meta value of the parent post based on the entered meta key
    1317
    1418Also, the plugin passes the current post as the first argument to the function, helpful for built-in wp functions that take the post as the first argument.
     
    2226
    23271. Custom Callback Dynamic Tag using the wp function `wp_get_post_parent_id`.
     282. Custom Menu Dynamic Tag
     293. The various Dynamic Tag options
    2430
    2531== Changelog ==
  • solid-dynamics/trunk/solid-dynamics.php

    r2549880 r2694533  
    44 * Plugin Name:       Solid Dynamics
    55 * Description:       Custom callbacks for elementor dynamic tags and jet engine macros.
    6  * Version:           1.0.0
     6 * Version:           1.1.0
    77 * Author:            Solid Digital
    88 * Author URI:        https://www.soliddigital.com
     
    3030    include_once( __DIR__ . "/classes/parent-meta-image.php" );
    3131    include_once( __DIR__ . "/classes/custom-callback.php" );
     32    include_once( __DIR__ . "/classes/menu.php" );
    3233
    3334    // Finally register the tag
     
    3536    $dynamic_tags->register_tag( '\Solid\ParentMetaImage' );
    3637    $dynamic_tags->register_tag( '\Solid\CustomCallback' );
     38    $dynamic_tags->register_tag( '\Solid\Menu' );
    3739} );
    3840
Note: See TracChangeset for help on using the changeset viewer.