Home / Admin / Digital Store Theme – Latest Downloads Number
Duplicate Snippet

Embed Snippet on Your Site

Digital Store Theme – Latest Downloads Number

Changes the number of downloads displayed in the latest downloads section of the store front template.

Code Preview
php
<?php
function jp_ds_latest_downloads( $atts ) {
	$atts['limit'] = 3; // Set this number to whatever you want
	return $atts;
}
add_filter( 'digitalstore_latest_downloads_atts', 'jp_ds_latest_downloads' );

Comments

Add a Comment