Plugin info

Total downloads: 1,624
Active installs: 0
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 6/21/2022 (1289 days ago)
Added to WordPress: 4/20/2019 (6 years old)
Minimum WordPress version: 4.9
Tested up to WordPress version: 6.0.11
Minimum PHP version: 5.6

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 1289 days ago

20/100

Is Latest Github Release abandoned?

Possibly abandoned (last update 1289 days ago).

Compatibility

Requires WordPress: 4.9
Tested up to: 6.0.11
Requires PHP: 5.6

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

CBX Changelog & Release Note
Rating 5.0/5 (3 reviews)Active installs 300
Changeloger – Release Notes & Changelog Manager
Rating 5.0/5 (3 reviews)Active installs 200
GitHub Release Downloads
Rating 4.8/5 (4 reviews)Active installs 70
Hide Generator Version
Rating 0.0/5 (0 reviews)Active installs 60
Appsero Helper
Rating 5.0/5 (2 reviews)Active installs 40
Comment License
Rating 0.0/5 (0 reviews)Active installs 40

Description

Automatically add a download link to the latest Github repo release zips with
a shortcode [latest_github_release user=”github” repo=”hub”]

Usage

Add the shortcode [latest_github_release user="github" repo="hub"] to desired post/page/widget and save to have the code working.

options

One can add some customization to the shortcode such as

  • Name of the button = [latest_github_release name="Desired Name"]

Use latest_github_release_link filter Hook

`

add_filter( ‘latest_github_release_link’, ‘gmlatest_github_release_link’, 10, 3 );

function gmlatest_github_release_link( $html, $atts, $zip_url ) {

// Add another class to the .
$atts['class'] .= ' another-class';

// Add 

around the tag. $html = ( '

' . esc_html( $atts['name'] ) . '

' ); return $html;

}
`

Note:
1. Name attribute defaults to the word “Download”
1. Name is usedin combination with the other attribbutes user & repo.

Contribute/Issues/Feedback

If you have any feedback, just write an issue. Or fork the code and submit a PR on Github.

Installation

No installation instructions available

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

Changelog

** 2.1.0 **
– Test for WP 6.0
– Fix missing $zip_url in filter.

** 2.0.0 **
– Updates the plugin to use static functions and to have code that is re-usable by other plugins.

** 1.2.0 **
– Fix Caching errors.
– Better docs.
– Coding style/consistency fixes.

** 1.1.0 **
– Code improvements.

** 1.0.0 **
– Initial Release.