A simple plugin that force the download of images or pictures such as jpeg,png etc.
This is a simple plugin that allows you to force the download of images or pictures such as jpeg, png, etc.
This plugin is very useful to those who want to download post attachments or featured images. Just put the template tag in single.php and this plugin automatically generates the download link for every post.
Note: The post must have a featured image because this plugin generates a download link of the attached featured image of every post, if the post(s) have not featured image the download button would not appear.
By using shortcode you can set your “custom image link” for each button. You can use multiple shorcodes on single page/post.
Now custom CSS class can be added in shortcode for each button. Example
[wpfid class="myclass"]
settings >> Wp-Force Images Download
page and add your CSS code here and save settings.Renaming Image file on download when using template tag
Now you can rename iamge file when it is downloaded using template tag.
Note there are three parameters for template tag
Download
<?php wp_fid("Some Text","green","NEW FILE NANME");?>
<?php wp_fid("Some Text","green",get_the_title());?>
<?php wp_fid("Some Text","green",current_time('timestamp'));?>
<?php wp_fid("Some Text","green",get_the_title().current_time('timestamp'));?>
Need Any Help? Post your Question
Now you can rename images when downloaded.There two ways to rename.
[wpfid new_name="new-name-of-file"]
[wpfid new_name="%post_id%"]
[wpfid new_name="%filename%_%rand%"]
, etc.You have to specify name only without file extension.
Goto settings >> Wp-Force Images Download
page and set your desired combination to rename images. e.g. %filename%-%rand%
none
%site_name%_%filename%-%post_id%
.%site_name%:
Replaced with the site title. Goto Settings >> General >> [Site Title]
to change this value.%post_title%:
Replaced with the current post title%timestamp%:
Replaced with the current time in unix timestamp format%post_id%:
Replaced with the current post id%rand%:
Replaced with the 5-digit random number between 0 to 100000 e.g. 82469%md5%:
Replaced with the md5 hash of orginal filename%filename%:
Replaced with the orginal filenamee.g.
[wpfid link=”http://link-to/your/image.jpg”]
You have to put the template tag in your single.php file of your theme, where you want to appear the download button.
<?php wp_fid();?>
This is simple form with default settings.<?php wp_fid("Some Text");?>
This will allow you to set custom text to appear on download button. Default is Download<?php wp_fid("Some Text","green");?>
This will allow you to set custom text along with custom color (e.g. pink,green,yellow,purple,#ffcc66,#cccccc,#f80, rgb(255,56,35) etc)
. Default color is grey
<?php wp_fid("Some Text","green","NEW FILE NANME");?>
This will allow you to set custom text,custom color, new name of image when downloaded. <?php wp_fid("Some Text","green","NEW FILE NANME");?>
<?php wp_fid("Some Text","green",get_the_title());?>
<?php wp_fid("Some Text","green",current_time('timestamp'));?>
<?php wp_fid("Some Text","green",get_the_title().current_time('timestamp'));?>
The default title text is Download and default color is grey
.
Note:If Featured Image is not set for post the download button would not appear on page.
You have to put shortcode in the post content or page, while writing post.
There are five ways to use SHORTCODE.
[wpfid]
This is simple form with default settings.[wpfid title="some text"]
This will allow you to set custom text to appear on download button. Default is “Download”[wpfid title="some text" color="green"]
This will allow you to set custom text along with custom color. Default color is “grey”[wpfid title="some text" color="green" link="http://link-to/your/image.jpg"]
This will allow you to set custom text, custom color and custom download link.[wpfid title="some text" color="green" link="http://link-to/your/image.jpg" class="my_custom_class"]
This will allow you to set custom text, custom color, custom download link and custom CSS class.settings >> Wp-Force Images Download
page and add your custom CSS code here and save settings.Upload the WP-Force Images Download plugin to your blog, Activate it, and you’re done!
You have to put this code in theme file.
<?php wp_fid();?>
or use shortcode.
[wpfid]
No questions yetYou can Set Custom Color in three ways:
(pink,green,yellow,purple, etc)
(#33ff66, #666666, #ff7700, etc)
( rgb(255, 255, 255),rgb(24, 45, 68), etc)
[wpfid color="green" class="mybutton"]
<?php wp_fid();?>
not downloading picture %rand%,%md5%,%filename%
[wpfid new_name="%post_id%_%filename%"]