Changeset 2694533
- Timestamp:
- 03/16/2022 01:14:58 AM (4 years ago)
- Location:
- solid-dynamics
- Files:
-
- 8 added
- 2 edited
- 7 copied
-
assets/banner-1544x500.jpg (added)
-
assets/banner-772x250.jpg (added)
-
assets/icon-128x128.png (added)
-
assets/icon-256x256.png (added)
-
assets/screenshot-2.png (added)
-
assets/screenshot-3.png (added)
-
tags/1.1.0 (copied) (copied from solid-dynamics/trunk)
-
tags/1.1.0/trunk (copied) (copied from solid-dynamics/trunk)
-
tags/1.1.0/trunk/classes (copied) (copied from solid-dynamics/trunk/classes)
-
tags/1.1.0/trunk/classes/menu.php (added)
-
tags/1.1.0/trunk/index.php (copied) (copied from solid-dynamics/trunk/index.php)
-
tags/1.1.0/trunk/languages (copied) (copied from solid-dynamics/trunk/languages)
-
tags/1.1.0/trunk/readme.txt (copied) (copied from solid-dynamics/trunk/readme.txt) (3 diffs)
-
tags/1.1.0/trunk/solid-dynamics.php (copied) (copied from solid-dynamics/trunk/solid-dynamics.php) (3 diffs)
-
trunk/classes/menu.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/solid-dynamics.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
solid-dynamics/tags/1.1.0/trunk/readme.txt
r2549880 r2694533 2 2 Contributors: soliddigital,lukechinworth,peterajtai 3 3 Tags: elementor, dynamic tags, jet engine, macros 4 Tested up to: 5. 7.25 Stable tag: 1. 0.04 Tested up to: 5.9.2 5 Stable tag: 1.1.0 6 6 License: GPLv2 7 7 … … 10 10 == Description == 11 11 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. 12 This 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 13 17 14 18 Also, 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. … … 22 26 23 27 1. Custom Callback Dynamic Tag using the wp function `wp_get_post_parent_id`. 28 2. Custom Menu Dynamic Tag 29 3. The various Dynamic Tag options 24 30 25 31 == Changelog == -
solid-dynamics/tags/1.1.0/trunk/solid-dynamics.php
r2549880 r2694533 4 4 * Plugin Name: Solid Dynamics 5 5 * Description: Custom callbacks for elementor dynamic tags and jet engine macros. 6 * Version: 1. 0.06 * Version: 1.1.0 7 7 * Author: Solid Digital 8 8 * Author URI: https://www.soliddigital.com … … 30 30 include_once( __DIR__ . "/classes/parent-meta-image.php" ); 31 31 include_once( __DIR__ . "/classes/custom-callback.php" ); 32 include_once( __DIR__ . "/classes/menu.php" ); 32 33 33 34 // Finally register the tag … … 35 36 $dynamic_tags->register_tag( '\Solid\ParentMetaImage' ); 36 37 $dynamic_tags->register_tag( '\Solid\CustomCallback' ); 38 $dynamic_tags->register_tag( '\Solid\Menu' ); 37 39 } ); 38 40 -
solid-dynamics/trunk/readme.txt
r2549880 r2694533 2 2 Contributors: soliddigital,lukechinworth,peterajtai 3 3 Tags: elementor, dynamic tags, jet engine, macros 4 Tested up to: 5. 7.25 Stable tag: 1. 0.04 Tested up to: 5.9.2 5 Stable tag: 1.1.0 6 6 License: GPLv2 7 7 … … 10 10 == Description == 11 11 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. 12 This 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 13 17 14 18 Also, 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. … … 22 26 23 27 1. Custom Callback Dynamic Tag using the wp function `wp_get_post_parent_id`. 28 2. Custom Menu Dynamic Tag 29 3. The various Dynamic Tag options 24 30 25 31 == Changelog == -
solid-dynamics/trunk/solid-dynamics.php
r2549880 r2694533 4 4 * Plugin Name: Solid Dynamics 5 5 * Description: Custom callbacks for elementor dynamic tags and jet engine macros. 6 * Version: 1. 0.06 * Version: 1.1.0 7 7 * Author: Solid Digital 8 8 * Author URI: https://www.soliddigital.com … … 30 30 include_once( __DIR__ . "/classes/parent-meta-image.php" ); 31 31 include_once( __DIR__ . "/classes/custom-callback.php" ); 32 include_once( __DIR__ . "/classes/menu.php" ); 32 33 33 34 // Finally register the tag … … 35 36 $dynamic_tags->register_tag( '\Solid\ParentMetaImage' ); 36 37 $dynamic_tags->register_tag( '\Solid\CustomCallback' ); 38 $dynamic_tags->register_tag( '\Solid\Menu' ); 37 39 } ); 38 40
Note: See TracChangeset
for help on using the changeset viewer.